-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.55 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.4",
"@types/chai-as-promised": "^7.1.5",
"@types/mapbox__vector-tile": "^1.3.0",
"@types/mocha": "^10.0.0",
"@types/moo": "^0.5.5",
"@types/nearley": "^2.11.2",
"@types/offscreencanvas": "^2019.7.0",
"@types/pbf": "^3.0.2",
"@types/three": "^0.146.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.28.0",
"mocha": "^10.1.0",
"nearley": "^2.20.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.8.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@mapbox/vector-tile": "^1.3.1",
"@types/diff": "^5.0.2",
"diff": "^5.1.0",
"immer": "^9.0.16",
"moo": "^0.5.2",
"murmurhash": "^2.0.1",
"pbf": "^3.2.1",
"rxjs": "^7.5.7",
"three": "^0.146.0",
"three-csg-ts": "^3.1.11",
"three-stdlib": "^2.19.0"
}
}