-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
83 lines (83 loc) · 2.46 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
76
77
78
79
80
81
82
83
{
"name": "utahexpungements.org",
"repository": "[email protected]:UtahAccessToJustice/utahexpungements.org.git",
"author": "Joel Denning <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"webpack": "webpack --config webpack.config.js",
"start": "node backend/server.js",
"develop": "concurrently -n w: yarn:develop-*",
"develop-frontend": "webpack-dev-server --mode=development",
"develop-backend": "nodemon backend/server.js --watch backend -e js,ejs",
"build": "yarn webpack",
"analyze": "webpack --config webpack.config.analyze.js",
"lint": "eslint frontend backend",
"deploy": "yarn build && gh-pages -d dist",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint"
}
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-eslint": "^11.0.0-beta.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.0.0",
"copyfiles": "^2.1.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-config-react-important-stuff": "^1.2.2",
"eslint-loader": "^3.0.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"i18n-webpack-plugin": "^1.0.0",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"react-portal": "^4.2.0",
"rimraf": "^3.0.0",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"busboy": "^0.3.1",
"classnames": "^2.2.6",
"ejs": "^2.7.1",
"email-validator": "^2.0.4",
"eslint-config-node-important-stuff": "^1.0.0",
"express": "^4.17.1",
"firebase": "^7.2.2",
"fuse.js": "^3.4.5",
"kremling": "^2.0.1",
"lodash-es": "^4.17.15",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"pdf-parse": "^1.1.1",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-icons": "^3.8.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2"
},
"browserslist": [
"Safari >= 10",
"Edge >= 14",
"last 5 Chrome versions",
"last 5 Firefox versions"
]
}