forked from Atlantic-Compass/FEC-CatWalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.33 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
73
74
75
{
"name": "projectcatwalk",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"jest": {
"verbose": true,
"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"
}
},
"scripts": {
"clean": "rm dist/bundle.js",
"build-dev": "webpack --mode development -w",
"build-css": "node-sass ./stylesheets -o ./dist/stylesheets --output-style compressed",
"watch-css": "node-sass --watch ./stylesheets -o ./dist/stylesheets --output-style compressed",
"build": "node-sass ./stylesheets -o ./dist/stylesheets --output-style compressed && webpack --mode production",
"test": "jest --collect-coverage",
"start": "nodemon server/index.js"
},
"dependencies": {
"@types/compression": "^1.7.0",
"axios": "^0.21.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jquery": "^3.5.1",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"path": "^0.12.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^7.1.1",
"css-loader": "^5.0.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"html-critical-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^5.0.0-beta.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"lodash-webpack-plugin": "^0.11.6",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^5.0.0",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"react-test-render": "^1.1.2",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.0"
}
}