-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 4.14 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 4.14 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "cassim",
"version": "1.0.0-alpha.1",
"contributors": [
"Alex Komoroske"
],
"license": "BSD-3-Clause",
"repository": "jkomoros/CASsim",
"type": "module",
"scripts": {
"start": "npm run serve",
"start:bisect": "npm install && npm run build:clean && npm run start",
"start:clean": "npm install && npm run build:clean && npm run generate && npm run start",
"serve": "tsc --watch --preserveWatchOutput & wds --node-resolve --port=3119",
"build": "npm run build:pre && npm run build:post",
"build:full": "npm run build:pre && npm run generate && npm run build:typescript && npm run build:post",
"build:pre": "npm run build:clean && npm run generate:before-build && npm run build:typescript",
"build:post": "npm run build:rollup",
"build:minimal": "npm run generate:before-build && npm run build:typescript",
"build:clean": "npm run build:clean:build && npm run build:clean:typescript",
"build:clean:build": "rm -rf build/",
"build:clean:typescript": "find src -name '*.map' -type f -delete && find src -name '*.js' -type f -delete && find src -name '*.d.ts' ! -name 'modules.d.ts' -type f -delete",
"build:clean:generated": "find src -name '*.GENERATED.*' -type f -delete",
"build:clean:pristine": "npm run build:clean && npm run build:clean:generated",
"build:rollup": "rollup -c",
"build:typescript": "tsc",
"generate": "npm run build:minimal && npm run generate:types && npm run generate:schema && npm run generate:config",
"generate:before-build": "npm run generate:stubs && npm run generate:config",
"generate:update-types": "npm run generate:types && npm run generate:schema",
"generate:stubs": "NODE_OPTIONS='--loader ts-node/esm' npx ts-node tools/types.ts stubs",
"generate:types": "NODE_OPTIONS='--loader ts-node/esm' npx ts-node tools/types.ts full",
"generate:schema": "ts-json-schema-generator --type 'PackedRawSimulationConfig' --tsconfig tsconfig.json > data-schema.json",
"generate:config": "NODE_OPTIONS='--loader ts-node/esm' npx ts-node tools/config.ts",
"generate:internal:emojis": "NODE_OPTIONS='--loader ts-node/esm' npx ts-node tools/emojis.ts",
"screenshots": "NODE_OPTIONS='--loader ts-node/esm' npx ts-node tools/screenshot.ts",
"screenshots:png": "NODE_OPTIONS='--loader ts-node/esm' npx ts-node tools/screenshot.ts png",
"screenshots:gif": "NODE_OPTIONS='--loader ts-node/esm' npx ts-node tools/screenshot.ts gif",
"deploy": "npm run build && firebase deploy",
"test": "vitest run",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@webcomponents/webcomponentsjs": "^2.2.4",
"d3": "^7.3.0",
"esm-seedrandom": "^3.0.5",
"firebase": "^12.8.0",
"lit": "^3.3.2",
"pwa-helpers": "^0.9.0",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"reselect": "^5.1.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.9",
"@rollup/plugin-dynamic-import-vars": "^2.1.5",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/d3": "^7.4.0",
"@types/pngjs": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitest/ui": "^4.0.18",
"@web/dev-server": "^0.4.6",
"@web/dev-server-rollup": "^0.6.4",
"axe-core": "^3.0.0",
"canvas": "^3.2.1",
"chai": "^4.1.2",
"del": "^7.1.0",
"eslint": "^9.39.2",
"firebase-tools": "^15.5.1",
"gifencoder": "^2.0.1",
"glob": "^11.1.0",
"happy-dom": "^20.5.0",
"image-size": "^0.9.3",
"mocha": "^10.0.0",
"pixelmatch": "^4.0.2",
"pngjs": "^3.4.0",
"prpl-server": "^1.4.0",
"puppeteer": "^24.36.1",
"rollup": "^4.57.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-summary": "^1.4.3",
"ts-json-schema-generator": "^2.4.0",
"ts-lit-plugin": "^2.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
}
}