-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.15 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
50
{
"type": "module",
"name": "@lwj/scenes",
"version": "1.0.0",
"main": "index.js",
"author": "Jason Lengstorf <[email protected]>",
"license": "MIT",
"scripts": {
"postinstall": "breadbox --dest public/web_modules",
"build": "toast incremental .",
"dev": "npm run build && http-server public",
"serve": "http-server public"
},
"dependencies": {
"@sector/breadbox": "^0.0.4",
"@socket-studio/preact": "^1.0.0-canary.17",
"@xstate/react": "^1.3.1",
"matter-js": "^0.16.1",
"netlify-plugin-toast-cache": "0.0.4",
"poly-decomp": "^0.3.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.2.0",
"rehype": "^11.0.0",
"rehype-sanitize": "^4.0.0",
"splitting": "^1.0.6",
"toast": "^0.3.43",
"xstate": "^4.17.1"
},
"snowpack": {
"exclude": [
"public/**",
"commonjs-compat/**",
"toast.js"
],
"installOptions": {
"alias": {
"react": "preact/compat"
}
},
"knownEntrypoints": [
"preact",
"preact/hooks",
"splitting",
"splitting/dist/splitting.css"
]
},
"devDependencies": {
"http-server": "^0.12.3"
}
}