forked from civictechdc/rfj_expungement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 872 Bytes
/
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
{
"name": "rfj_expungement",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"precommit": "lint-staged"
},
"dependencies": {
"@date-io/date-fns": "^1.3.11",
"@material-ui/core": "^4.4.2",
"@material-ui/icons": "^4.4.1",
"@material-ui/pickers": "^3.2.7",
"babel-polyfill": "^6.26.0",
"date-fns": "^2.0.0-beta.5",
"draft-js": "^0.11.2",
"next": "^9.0.6",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"xstate": "^4.6.7"
},
"devDependencies": {
"eslint": "^6.2.2",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.1.0",
"lint-staged": "^9.2.4",
"prettier": "^1.18.2",
"typescript": "^3.6.3"
},
"lint-staged": {
"*.js": "eslint",
"*.{js,md}": [
"prettier --write",
"git add"
]
}
}