-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
82 lines (82 loc) · 2.95 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "awayjs-examples",
"version": "1.0.28",
"description": "A collection of simple code examples implementing the awayjs engine",
"scripts": {
"rimraf": "rimraf",
"webpack": "webpack",
"clean": "npm cache clean && npm run rimraf -- node_modules bin",
"clean:bin": "npm run rimraf -- bin",
"clean:libs": "npm run rimraf -- libs",
"preclean:install": "npm run clean",
"clean:install": "npm set progress=false && npm install",
"preclean:start": "npm run clean",
"clean:start": "npm start",
"watch": "npm run watch:dev",
"watch:dev": "npm run build:dev -- --watch",
"watch:dev:hmr": "npm run watch:dev -- --hot",
"watch:test": "npm run test -- --auto-watch --no-single-run",
"watch:prod": "npm run build:prod -- --watch",
"build": "npm run build:dev",
"prebuild:libs": "npm run clean:libs",
"build:libs": "webpack --config webpack.libs.js --progress --profile --colors --display-error-details --display-cached",
"prebuild:dev": "npm run clean:bin",
"build:dev": "webpack --config webpack.config.js --progress --profile --colors --display-error-details --display-cached",
"prebuild:prod": "npm run clean:bin",
"build:prod": "webpack --config webpack.config.js --progress --profile --colors --display-error-details --display-cached --bail",
"server": "npm run server:dev",
"server:dev": "webpack-dev-server --config webpack.config.js --inline --progress --profile --watch --content-base bin",
"server:dev:hmr": "npm run server:dev -- --hot",
"server:prod": "http-server bin --cors",
"start": "npm run server:dev",
"start:hmr": "npm run server:dev:hmr",
"version": "npm run build:prod",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awayjs/awayjs-examples.git"
},
"keywords": [
"AwayJS",
"3D",
"2D",
"graphics",
"WebGL"
],
"author": "Rob Bateman",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/awayjs/awayjs-examples/issues"
},
"homepage": "https://github.com/awayjs/awayjs-examples#readme",
"dependencies": {
"@awayfl/avm1": "^0.1.0",
"@awayfl/avm2": "^0.1.0",
"@awayfl/awayfl-player": "^0.1.0",
"@awayfl/playerglobal": "^0.1.0",
"@awayfl/swf-loader": "^0.3.0",
"@awayjs/core": "^0.8.0",
"@awayjs/graphics": "^0.4.0",
"@awayjs/materials": "^0.5.0",
"@awayjs/parsers": "^0.7.0",
"@awayjs/player": "^0.6.0",
"@awayjs/renderer": "^0.10.0",
"@awayjs/scene": "^0.12.0",
"@awayjs/stage": "^0.10.0",
"@awayjs/view": "^0.5.0"
},
"devDependencies": {
"awesome-typescript-loader": "3.2.3",
"babel-core": "^6.18.2",
"compression-webpack-plugin": "^0.3.1",
"copy-webpack-plugin": "^1.1.1",
"html-webpack-plugin": "^2.15.0",
"rimraf": "^2.5.2",
"source-map-loader": "^0.2.1",
"tslib": "^1.2.0",
"typescript": "^3.7.3",
"webpack": "3.5.5",
"webpack-dev-server": "2.7.1"
}
}