-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1007 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
{
"name": "procedural-map",
"version": "1.0.0",
"description": "procedural map creation",
"main": "index.js",
"scripts": {
"mocha": "mocha",
"test": "run-s compile-ts mocha",
"compile-ts": "tsc classes.ts",
"ts-watch": "tsc -w classes.ts",
"start": "run-s compile-ts start-server",
"start-server": "node index.js",
"dev-server": "nodemon",
"dev": "run-p ts-watch dev-server",
"build-test-start": "run-s compile-ts mocha start-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/levg34/procedural-map.git"
},
"author": "levg34",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/levg34/procedural-map/issues"
},
"homepage": "https://github.com/levg34/procedural-map#readme",
"devDependencies": {
"@types/node": "^15.12.4",
"mocha": "^9.0.1",
"npm-run-all": "^4.1.5",
"typescript": "^4.3.4"
},
"dependencies": {
"express": "^4.17.1",
"three": "^0.129.0"
}
}