-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "hexa-battle",
"version": "0.1.1",
"description": "",
"scripts": {
"build": "npm run webpack",
"dev-server": "DEV_SERVER=true webpack-dev-server --hot --inline --progress",
"lint": "tslint --project tsconfig.json",
"start": "npm run dev-server",
"test": "npm run lint && npm run build",
"webpack": "NODE_ENV=production webpack -p --progress"
},
"author": "Giacomo Tagliabue",
"license": "MIT",
"devDependencies": {
"@types/aphrodite": "^0.5.5",
"@types/color": "^1.0.0",
"@types/react": "^15.0.16",
"@types/react-dom": "^0.14.23",
"extract-svg-path": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"lodash": "^4.17.4",
"source-map-loader": "^0.2.0",
"ts-loader": "^2.0.1",
"tslint": "^4.5.1",
"typescript": "^2.2.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"webpack-merge": "^4.0.0"
},
"dependencies": {
"animejs": "^2.0.1",
"aphrodite": "^1.1.0",
"color": "^1.0.3",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"store": "^2.0.4"
}
}