-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "nsgroupfinder",
"version": "0.1.0",
"private": true,
"dependencies": {
"autosuggest-highlight": "^3.1.1",
"firebase": "^4.8.2",
"lodash": "^4.17.4",
"material-ui": "^1.0.0-beta.34",
"material-ui-icons": "^1.0.0-beta.17",
"moment": "^2.20.1",
"react": "^16.2.0",
"react-autosuggest": "^9.3.2",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-redux-firebase": "^2.0.1",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.0",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-firestore": "^0.2.6",
"redux-form": "^7.2.1",
"redux-form-material-ui": "^5.0.0-beta.2",
"redux-form-validators": "^2.3.2",
"redux-observable": "^0.17.0",
"rxjs": "^5.5.6",
"source-map-explorer": "^1.5.0"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,scss,less,md}": [
"npx prettier --config .prettierrc.json --write",
"git add"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "npx eslint .",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"flow": "flow",
"prettier":
"npx prettier --config .prettierrc.json --write 'src/**/*.{js,jsx,json,css,scss,less,md}'",
"analyze": "source-map-explorer build/static/js/main.*",
"precommit": "lint-staged",
"deploy": "npm run build && firebase deploy --only hosting"
},
"devDependencies": {
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"flow-bin": "^0.63.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "1.10.2"
}
}