-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.28 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.28 KB
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": "web-speed-hackathon-online",
"version": "0.0.1",
"license": "Proprietary",
"private": true,
"scripts": {
"clean": "rimraf dist",
"build": "npm-run-all clean build:css build:webpack",
"build:css": "postcss src/app.css -d dist",
"build:webpack": "cross-env NODE_ENV=development webpack --config webpack.config.js",
"build:webpack-with-mock-data": "cross-env USE_MOCK_DATA=true NODE_ENV=development webpack --config webpack.config.js",
"fmt": "prettier --write 'src/**/*.{js,css}'",
"serve": "nodemon --exec babel-node lib/server.js"
},
"devDependencies": {
"autoprefixer": "^9.7.4",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.27",
"postcss-cli": "^7.1.0",
"postcss-custom-properties": "^9.1.1",
"postcss-import": "^12.0.1",
"prettier": "^2.0.1",
"rimraf": "^3.0.2",
"url-loader": "^4.0.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,css}": "prettier --write"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@zendeskgarden/css-buttons": "^7.0.19",
"@zendeskgarden/css-forms": "^7.0.20",
"@zendeskgarden/css-utilities": "^4.5.5",
"axios": "^0.19.2",
"axios-mock-adapter": "^1.18.1",
"classnames": "^2.2.6",
"core-js": "^3.6.4",
"express": "^4.17.1",
"immutable": "^4.0.0-rc.12",
"jquery": "^3.4.1",
"lodash": "^4.17.15",
"moment-timezone": "^0.5.28",
"normalize.css": "^8.0.1",
"race-timeout": "^1.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"regenerator-runtime": "^0.13.5",
"suitcss-utils": "^3.0.0"
}
}