-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 1.86 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "starfire-project-catwalk",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:dev": "webpack -w",
"start": "npx nodemon index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JacobMelnick/starfire-project-catwalk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JacobMelnick/starfire-project-catwalk/issues"
},
"homepage": "https://github.com/JacobMelnick/starfire-project-catwalk#readme",
"dependencies": {
"axios": "^0.21.1",
"cloudinary": "^1.26.0",
"cssloader": "^1.1.1",
"express": "^4.17.1",
"express-form-data": "^2.0.17",
"identity-obj-proxy": "^3.0.0",
"loader": "^2.1.1",
"luxon": "^1.27.0",
"nodemon": "^2.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-lazyload": "^3.2.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-syntax-jsx": "^7.14.5",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@testing-library/react": "^11.2.7",
"babel-jest": "^27.0.2",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"jest": "^27.0.4",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"wepback": "^1.0.0"
},
"jest": {
"testEnvironment": "jsdom",
"modulePaths": [
"/shared/vendor/modules"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"shared"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
}
}
}