-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.5 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
38
39
40
41
42
43
44
45
{
"name": "engine_3d",
"version": "1.0.0",
"description": "Surge's attempt at learning about 3d programming",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .ts",
"serve": "http-server build",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'",
"tsc": "tsc",
"tscw": "tsc --watch",
"build-gen-assets": "webpack --config webpack.genassets.config.js",
"build-load-assets": "webpack --config webpack.loadassets.config.js",
"build-load-shader": "webpack --config webpack.loadshader.config.js",
"build-test-frustrumculling": "webpack --config webpack.testfrustrumculling.config.js",
"build-test-phongnomaps": "webpack --config webpack.testphongnomaps.config.js",
"build-test-skinnedanimation": "webpack --config webpack.testskinnedanimation.config.js",
"wp": "webpack",
"wpw": "webpack --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^8.2.3",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"chai": "^4.3.4",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^7.30.0",
"http-server": "^0.12.1",
"mocha": "^9.0.2",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"uuid": "^3.4.0",
"webpack": "^5.47.1",
"webpack-cli": "^4.7.2"
},
"devDependencies": {
"js-sha256": "^0.9.0"
}
}