-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.54 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
{
"name": "cgv",
"version": "1.0.0",
"description": "Computer Generated Verse",
"scripts": {
"generate:parser": "nearleyc grammar.ne -o src/parser/parser.ts",
"build": "tsc -p build.tsconfig.json",
"fix": "run-s fix:prettier fix:eslint",
"fix:prettier": "prettier --write src/**/*.{ts,tsx}",
"fix:eslint": "eslint src --fix",
"test": "nyc mocha -r ts-node/register ./tests/*"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/mapbox__vector-tile": "^1.3.0",
"@types/mocha": "^9.1.0",
"@types/moo": "^0.5.5",
"@types/nearley": "^2.11.2",
"@types/pbf": "^3.0.2",
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.8.0",
"mocha": "^9.2.1",
"nearley": "^2.20.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@mapbox/vector-tile": "^1.3.1",
"@types/diff": "^5.0.2",
"diff": "^5.1.0",
"immer": "^9.0.12",
"moo": "^0.5.1",
"murmurhash": "^2.0.0",
"pbf": "^3.2.1",
"rxjs": "^7.5.5",
"three": "^0.139.2",
"three-csg-ts": "^3.1.10",
"three-stdlib": "^2.9.1",
"threejs-meshline": "^2.0.12"
}
}