-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.86 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
{
"name": "morse-camp",
"version": "0.1.0",
"private": true,
"dependencies": {
"babel-polyfill": "^6.26.0",
"localforage": "^1.5.5",
"mobx": "^3.3.1",
"mobx-react": "^4.3.3",
"node-sass": "^4.13.1",
"raf": "^3.4.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-ga": "^3.3.1",
"react-helmet": "^5.2.0",
"react-hotkeys": "^1.1.4",
"react-md": "^1.1.7",
"react-router-dom": "^4.2.2",
"react-scripts": "3.2.0",
"seedrandom": "^2.4.3",
"web-audio-test-api": "^0.5.2",
"webfontloader": "^1.6.28",
"weighted": "^0.3.0"
},
"devDependencies": {
"eslint-config-prettier": "^3.1.0",
"eslint-config-react-app": "3.0.4",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"prettier": "1.14.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"prettier": "prettier \"**/*.{json,md,scss,yaml,yml}\"",
"lint:other": "yarn prettier --list-different",
"lint:js": "eslint --ignore-path .gitignore --ignore-path .prettierignore \"**/*.{js,jsx}\"",
"pretest": "yarn run build",
"test": "yarn lint:other && yarn lint:js && react-scripts test --env=jsdom",
"format:other": "yarn prettier --write",
"format:js": "yarn lint:js --fix",
"format": "yarn format:js && yarn format:other",
"eject": "react-scripts eject",
"deploy": "react-scripts build && firebase deploy"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json,scss,md}": [
"prettier --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}