-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 987 Bytes
/
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
{
"name": "tdsim",
"version": "1.1.2",
"description": "",
"main": "build/tdsim.js",
"scripts": {
"build": "webpack",
"build-watch": "webpack --watch",
"build-production": "webpack --config webpack-production.config.js",
"test": "ts-node src/sims/objects/constraint.ts",
"build-screenshot": "node build.js",
"build-modules": "tsc --project tsconfig.modules.json",
"build-modules-watch": "tsc --watch --project tsconfig.modules.json",
"dev-server": "http-server ."
},
"files": [
"/build"
],
"keywords": [],
"author": "Terry Qi <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.25",
"http-server": "^14.1.0",
"playwright-firefox": "^1.21.1",
"ts-loader": "^9.2.8",
"ts-node": "^10.9.1",
"typescript": "^4.6.3",
"webpack": "^5.75.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"gpu.js": "^2.16.0"
}
}