-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 956 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
37
38
{
"name": "gmp_gen2_ai",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"all": "run-s clean lint build test",
"test": "jest",
"build": "tsc",
"lint": "eslint . --ext .ts --fix",
"clean": "rimraf -rf dist",
"dev": "concurrently \"tsc -w\" \"nodemon --exec revmp_server.exe\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"three": "^0.130.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/three": "^0.132.1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"concurrently": "^6.2.1",
"eslint": "^8.20.0",
"jest": "^26.6.3",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.1",
"ts-mockito": "^2.6.1",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
}
}