-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.1 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
{
"name": "website",
"private": true,
"scripts": {
"start": "npm run _meteor -- -p 8765",
"build": "echo 'nothing to build for website'",
"dev": "npm run _meteor",
"_meteor": "meteor --exclude-archs web.browser.legacy",
"setup-website-service": "cd website && ./setup-service.sh",
"// LUME Scripts below ///////////////////////////////////////": "",
"typecheck": "lume typecheck",
"typecheck:watch": "lume typecheckWatch"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"@lume/element": "^0.6.0",
"@tweenjs/tween.js": "^18.6.4",
"lume": "0.3.0-alpha.9",
"meteor-node-stubs": "^1.0.0",
"solid-js": "1.4.x"
},
"// overrides for npm": "",
"overrides": {
"solid-js": "$solid-js"
},
"// overrides for yarn": "",
"resolutions": {
"solid-js": "1.4.8"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@lume/cli": "^0.9.0",
"prettier": "3.0.3"
}
}