forked from yoav-zibin/GameBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "GameBuilder",
"version": "0.1.0",
"private": true,
"homepage": "http://yoav-zibin.github.io/GameBuilder",
"devDependencies": {
"react-scripts": "1.0.10"
},
"dependencies": {
"firebase": "^4.1.3",
"gh-pages": "^1.0.0",
"husky": "^0.14.3",
"konva": "^1.6.7",
"lint-staged": "^4.2.3",
"material-ui": "^0.18.6",
"prettier": "^1.7.4",
"react": "^15.6.1",
"react-contenteditable": "^2.0.4",
"react-dnd": "^2.4.0",
"react-dnd-html5-backend": "^2.4.1",
"react-dom": "^15.6.1",
"react-konva": "^1.1.4",
"react-router-dom": "^4.1.2",
"react-tap-event-plugin": "^2.0.1"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}