-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.24 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.24 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
{
"name": "react-renderer-test",
"version": "1.0.0",
"description": "React Renderer Test",
"main": "index.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && cross-env BUILD_TYPE=production node fuse.js && cp -R ./src/webpage/static ./dist/",
"build:debug": "npm run clean && cross-env BUILD_TYPE=build-debug node fuse.js && cp -R ./src/webpage/static ./dist/",
"test": "npm run clean && cross-env BUILD_TYPE=test node fuse.js",
"dev": "npm run clean && cross-env BUILD_TYPE=dev node fuse.js",
"dev:production": "npm run clean && cross-env BUILD_TYPE=dev:production node fuse.js",
"dist:server": "npm run build && http-server ./dist"
},
"author": "David Komer",
"license": "MIT",
"devDependencies": {
"@types/chai": "4.0.4",
"@types/node": "8.0.32",
"@types/pixi.js": "4.5.5",
"@types/react": "16.0.9",
"chai": "^4.1.2",
"cross-env": "5.0.5",
"fuse-box": "2.3.1",
"fuse-test-runner": "1.0.14",
"http-server": "0.10.0",
"install": "^0.10.1",
"npm": "^5.4.2",
"pixi.js": "4.5.6",
"react": "^16.0.0",
"react-dom": "16.0.0",
"react-pixi-renderer": "^0.1.3-alpha",
"rimraf": "2.6.2",
"typescript": "2.5.3",
"uglify-js": "3.1.3"
}
}