forked from WISVCH/HackDelft-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 KB
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": "hackdelft-web",
"version": "0.1.0",
"private": true,
"homepage": "http://www.hackdelft.com",
"dependencies": {
"axios": "^0.17.1",
"material-ui": "^1.0.0-beta.34",
"material-ui-icons": "^1.0.0-beta.17",
"react": "^16.2.0",
"react-cookie": "^2.1.2",
"react-dom": "^16.2.0",
"react-scripts": "1.1.1"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": ["prettier --single-quote --write", "git add"]
},
"scripts": {
"precommit": "lint-staged",
"flow": "flow",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"clean": "rm -rf build dist",
"refresh": "rm -rf node_modules; yarn install",
"eject_VERY_VERY_DANGEROUS": "react-scripts eject"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"flow-bin": "^0.58.0",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"prettier": "^1.8.2",
"styled-components": "^2.2.3"
}
}