-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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
{
"private": true,
"scripts": {
"build": "rimraf ./dist && tsc -p .",
"test": "ts-node tests/index.ts",
"dev": "rimraf public && concurrently \"NODE_ENV=dev ts-node server/index.ts\" \"webpack --config webpack.config.js --watch\"",
"start": "rimraf public && webpack --config webpack.config.js && NODE_ENV=dev ts-node server/index.ts"
},
"dependencies": {
"@tweenjs/tween.js": "^17.2.0",
"@types/axios": "^0.14.0",
"@types/chokidar": "^1.7.5",
"@types/dotenv": "^4.0.3",
"@types/eventemitter3": "^2.0.2",
"@types/express": "^4.11.1",
"@types/lodash": "^4.14.108",
"@types/node": "^9",
"@types/numeral": "^0.0.22",
"@types/pixi.js": "^4.7.3",
"@types/tween.js": "^16.9.0",
"axios": "^0.18.0",
"chokidar": "^2.0.3",
"copy-webpack-plugin": "^4.5.1",
"dotenv": "^5.0.1",
"eventemitter3": "^3.1.0",
"express": "^4.16.3",
"lodash": "^4.17.10",
"numeral": "^2.0.6",
"pixi.js": "^4.7.3",
"preference": "^0.0.10",
"yaml": "^0.3.0"
},
"devDependencies": {
"awesome-typescript-loader": "^5.0.0",
"concurrently": "^3.5.1",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.1",
"scss-loader": "^0.0.1",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tslint-language-service": "^0.9.6",
"typescript": "^2.5.3",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15"
}
}