-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 3.31 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"scripts": {
"start": "snowpack build",
"build": "snowpack --config ./snowpack-prod.config.js build && node .github/workflows/archive.js",
"format": "prettier --write \"src/**/*.ts\"",
"format:scss": "prettier --write \"src/**/*.scss\"",
"lint": "prettier --check \"src/**/*.ts\"",
"clean": "rimraf node_modules",
"typecheck": "tsc --noEmit",
"gen:template-schema": "ts-json-schema-generator --tsconfig tsconfig.json --path ./src/foundry/template-schema.ts --no-type-check -t EntityTemplates --strict-tuples -o ./schemas/template.schema.json",
"gen:system-schema": "ts-json-schema-generator --tsconfig tsconfig.json --path ./src/foundry/system.ts --no-type-check -t SystemSchema --strict-tuples -o ./schemas/system.schema.json",
"gen:lang-schema": "ts-json-schema-generator --tsconfig tsconfig.json --path ./src/foundry/lang-schema.ts --no-type-check -t Lang --strict-tuples -o ./schemas/lang.schema.json"
},
"repository": {
"type": "git",
"url": "https://github.com/Bubz43/ep2e"
},
"dependencies": {
"@a11y/focus-trap": "^1.0.5",
"@badrap/valita": "^0.0.17",
"@material/mwc-base": "^0.22.1",
"@material/mwc-button": "^0.22.1",
"@material/mwc-checkbox": "^0.22.1",
"@material/mwc-circular-progress": "^0.22.1",
"@material/mwc-dialog": "^0.22.1",
"@material/mwc-formfield": "^0.22.1",
"@material/mwc-icon": "^0.22.1",
"@material/mwc-icon-button": "^0.22.1",
"@material/mwc-icon-button-toggle": "^0.22.1",
"@material/mwc-linear-progress": "^0.22.1",
"@material/mwc-list": "^0.22.1",
"@material/mwc-menu": "^0.22.1",
"@material/mwc-radio": "^0.22.1",
"@material/mwc-ripple": "^0.22.1",
"@material/mwc-slider": "^0.22.1",
"@material/mwc-snackbar": "^0.22.1",
"@material/mwc-switch": "^0.22.1",
"@material/mwc-tab": "^0.22.1",
"@material/mwc-tab-bar": "^0.22.1",
"@material/mwc-textarea": "^0.22.1",
"immer": "^9.0.5",
"lazy-get-decorator": "^2.2.0",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1",
"lit-virtualizer": "^0.4.2",
"mix-with": "^3.1.2",
"nanopop": "^2.1.0",
"remeda": "0.0.30",
"rxjs": "^7.3.0",
"web-animations-js": "^2.3.2",
"weightless": "0.0.37"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-proposal-logical-assignment-operators": "^7.14.5",
"@babel/plugin-transform-typescript": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@snowpack/plugin-babel": "^2.1.7",
"@snowpack/plugin-dotenv": "^2.2.0",
"@snowpack/plugin-run-script": "^2.3.0",
"@snowpack/plugin-sass": "^1.4.0",
"@snowpack/plugin-typescript": "^1.2.1",
"@snowpack/web-test-runner-plugin": "^0.2.2",
"@types/jquery": "^3.5.6",
"@types/resize-observer-browser": "^0.1.6",
"@types/snowpack-env": "^2.3.4",
"@types/socket.io": "^3.0.1",
"archiver": "^5.3.0",
"pixi.js": "^6.1.2",
"prettier": "^2.3.2",
"rollup": "^2.56.3",
"rollup-plugin-license": "^2.5.0",
"rollup-plugin-livereload": "^2.0.5",
"sass": "^1.38.1",
"snowpack": "3.0.13",
"tinymce": "^5.10.0",
"ts-json-schema-generator": "^0.95.0",
"type-fest": "^2.1.0",
"typed-query-selector": "^2.6.0",
"typescript": "^4.4.2",
"utility-types": "^3.10.0"
}
}