-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·42 lines (42 loc) · 1.1 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
{
"name": "@donysukardi/marvelicious",
"version": "1.0.0",
"description": "",
"keywords": [],
"main": "src/index.js",
"private": true,
"dependencies": {
"firebase": "^4.10.1",
"formik": "^0.11.11",
"md5": "^2.2.1",
"prop-types": "^15.6.1",
"query-string": "^5.1.0",
"ramda": "^0.25.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-modal": "^3.3.1",
"react-router-dom": "latest",
"react-scripts": "1.1.0",
"recompose": "^0.26.0",
"styled-components": "^3.2.1",
"styled-normalize": "^4.0.0",
"unstated": "1.0.3"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"format": "prettier --write \"src/**/*.{js,json,css,md}\"",
"surge": "cp build/index.html build/200.html && npx surge build"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
}
}