-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "perky_engine",
"version": "0.0.1",
"type": "module",
"scripts": {
"start": "NODE_ENV=development rm -rf .parcel-cache && parcel",
"build": "rm -rf .parcel-cache && rm -rf dist/ && parcel build --no-scope-hoist --public-url .",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest --watchAll --verbose"
},
"source": [
"scripts/index.html"
],
"alias": {
"vue": "vue/dist/vue.esm-bundler",
"engine": "./scripts/engine"
},
"jest": {
"moduleNameMapper": {
"^vue$": "<rootDir>/vue/dist/vue.esm-bundler",
"^engine/(.*)$": "<rootDir>/scripts/engine/$1"
},
"setupFiles": [
"jest-webgl-canvas-mock"
]
},
"staticFiles": {
"staticPath": "scripts/assets"
},
"devDependencies": {
"@parcel/optimizer-terser": "^2.10.3",
"@parcel/transformer-vue": "^2.10.3",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-webgl-canvas-mock": "^2.5.3",
"jsdom": "^24.1.1",
"parcel": "^2.10.3",
"parcel-reporter-static-files-copy": "^1.5.3",
"pixi.js": "^8.0.4",
"process": "^0.11.10",
"tone": "^14.7.77",
"vue": "^3.3.11"
}
}