-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 964 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": "src",
"version": "1.0.0",
"default": "static/dist/main.js",
"repository": "git@github.com:andrewljohnson/demogames.git",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@inlet/react-pixi": "^6.6.5",
"@mui/material": "^5.2.3",
"@swc/helpers": "^0.2.14",
"parcel": "^2.0.1",
"pixi-filters": "^4.1.3",
"pixi-scrollbox": "^2.3.1",
"pixi-text-input": "^1.0.6",
"pixi-viewport": "^4.31.0",
"pixi.js": "^6.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.9"
},
"scripts": {
"build": "NODE_ENV=production parcel build static/src/main.js --dist-dir static/dist --public-url ./",
"start": "parcel static/src/main.js --hmr-port 34471 --dist-dir static/dist"
},
"targets": {
"default": {
"engines": {
"browsers": [
"> 1%",
"not dead"
]
}
}
}
}