-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
71 lines (71 loc) · 1.8 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
{
"name": "nc-campaign-finance-dashboard",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@trussworks/react-uswds": "^2.8.0",
"campaign-finance-server": "file:server",
"match-sorter": "^4.2.1",
"node-sass": "^7.0.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-number-format": "^4.4.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.1",
"react-select": "^3.1.0",
"react-table": "^7.6.0",
"uswds": "^2.11.2"
},
"scripts": {
"start": "cd server/ && node dist/index.js",
"start-dev": "concurrently \"react-scripts start\" \"cd server && npm run start-dev\"",
"heroku-postbuild": "npm run build && cd server && npm run migrate-no-dot-env up",
"start-ui": "react-scripts start",
"build": "make build",
"build-ui": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write ."
},
"proxy": "http://localhost:3001",
"secure": false,
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"adm-zip": "^0.5.9",
"concurrently": "^5.3.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"ts-node": "^10.9.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"engines": {
"node": "16.x"
}
}