-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
116 lines (116 loc) · 3.43 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "seinjs",
"version": "1.6.2",
"description": "Modern game engine.",
"main": "lib/seinjs.js",
"module": "lib/seinjs.es.js",
"types": "lib/seinjs.d.ts",
"scripts": {
"hilo3d-watch": "cd Hilo3d && npm run seinjs-dev",
"hilo3d-build": "cd Hilo3d && npm run seinjs-build",
"build": "npm run hilo3d-build && ./node_modules/.bin/rollup --config && node ./dts-bundle.js",
"prepublishOnly": "bash ./prepublish.sh",
"gen-doc": "node ./gen-doc.js",
"dev": "concurrently \"npm run hilo3d-watch\" \"npm run gen-doc && node ./demo/server.dev.js --max-old-space-size=4096\"",
"demo-build": "npm run hilo3d-build && npm run gen-doc && webpack -p --config ./demo/webpack.demo.config.js",
"demo-pub": "npm run demo-build && paradise pub-sein"
},
"keywords": [
"Game engine",
"Sein",
"Sein.js",
"WebGL",
"3D"
],
"repository": {
"type": "git",
"url": "[email protected]:hiloteam/Sein.js.git"
},
"authors": [
{
"name": "Tianyu Dai (dtysky)",
"email": "[email protected]"
}
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"files": [
"lib",
"LICENCE",
"README.md",
"CHANGELOG.md"
],
"bugs": {
"url": "http://github.com/hiloteam/Sein.js/issues"
},
"homepage": "http://github.com/hiloteam/Sein.js#readme",
"devDependencies": {
"@types/cannon": "^0.1.3",
"@types/classnames": "0.0.32",
"@types/node": "^7.0.11",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.8",
"autoprefixer": "^6.7.7",
"awesome-typescript-loader": "3.5.0",
"axios": "^0.18.0",
"benchmark": "^2.1.4",
"classnames": "^2.2.5",
"clean-webpack-plugin": "^0.1.16",
"concurrently": "^4.1.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.27.1",
"dts-bundle": "^0.7.3",
"express": "4.20.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"hana-ui": "^1.2.2",
"highlight.js": "^9.13.1",
"hilo3d": "^1.15.0",
"hilojs": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.11",
"marked": "^1.0.0",
"pinkie-promise": "^2.0.1",
"postcss-loader": "^1.3.3",
"postcss-smart-import": "^0.6.11",
"precss": "^1.4.0",
"raw-loader": "^0.5.1",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-reconciler": "^0.25.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-router-hash-link": "^1.2.1",
"react-transition-group": "^2.5.0",
"rollup": "^1.27.3",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-terser": "^3.0.0",
"rollup-plugin-typescript2": "^0.25.2",
"rollup-plugin-uglify": "^6.0.0",
"sass": "^1.53.0",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^2.0.0",
"seinjs-inspector": "^0.9.2",
"source-map-loader": "^0.2.0",
"style-loader": "^0.13.2",
"tslib": "^1.10.0",
"tslint": "4.1.1",
"tslint-loader": "^3.3.0",
"tslint-microsoft-contrib": "^4.0.0",
"typedoc": "^0.14.2",
"typedoc-plugin-markdown": "^1.1.25",
"typedoc-plugin-no-inherit": "^1.1.4",
"typedoc-webpack-plugin": "^1.1.4",
"typescript": "^3.9.5",
"uglify-js": "^3.6.0",
"url-loader": "^0.5.7",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.10.1"
}
}