-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.25 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
{
"name": "whacts.com",
"repository": "git@github.com:JustUtahCoders/whacts.com.git",
"author": "Joel Denning",
"license": "MIT",
"scripts": {
"start": "node backend/server.js",
"develop": "concurrently -n w: yarn:develop-*",
"develop-frontend": "webpack-dev-server --mode=development",
"develop-backend": "NODE_ENV=production nodemon backend/server.js",
"build-frontend": "webpack --env.buildHashes=true",
"check-format": "prettier 'backend/**/*' --check"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
">5% in US"
],
"dependencies": {
"ejs": "^2.7.1",
"express": "^4.17.1"
},
"devDependencies": {
"@babel/core": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.0.0",
"husky": "^3.0.8",
"nodemon": "^1.19.3",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2",
"webpack-manifest-plugin": "^2.2.0"
}
}