-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.58 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
{
"name": "aphgames-examples",
"author": "Adam Vesecký",
"version": "6.4.0",
"license": "MIT",
"scripts": {
"dev": "node scripts/prebuild-project && parcel view/index.html --dist-dir build --no-cache",
"build": "npm run generate-views && node scripts/prebuild-project && parcel build view/index.html --dist-dir build --no-cache --public-url PUBLICURL --no-source-maps --no-content-hash && node scripts/rename.js && node scripts/fix-links.js",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"generate-views": "node scripts/generate-views.js",
"compile-test": "tsc --project tsconfig.json --noemit"
},
"parcel-namer-rewrite": {
"chain": "@parcel/namer-default",
"hashing": "never",
"rules": {
"src/examples.ts": "examples.js"
}
},
"dependencies": {
"eventemitter3": "^4.0.7",
"matter-js": "^0.17.1",
"pixi-sound": "^3.0.5",
"pixi.js": "^6.1.2",
"three": "^0.131.3"
},
"devDependencies": {
"@types/matter-js": "^0.17.5",
"@types/offscreencanvas": "^2019.6.4",
"@types/three": "^0.134.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/eslint-plugin-tslint": "^5.1.0",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-standard": "^5.0.0",
"parcel": "^2.9.3",
"parcel-namer-rewrite": "^2.0.0-rc.3",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"typescript": "^4.9.5"
}
}