-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "@patricksurry/eastern-front-1941",
"description": "Javascript port of Chris Crawford's Eastern Front 1941 game for Atari",
"version": "0.1.0",
"license": "ISC",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/patricksurry/eastern-front-1941"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "^9.0.2",
"@types/d3": "^7.4.0",
"@types/jest": "^29.2.3",
"@types/mithril": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"npm-run-all": "^4.1.5",
"rollup": "^3.3.0",
"rollup-jest": "^3.0.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-polyfill-node": "^0.11.0",
"rollup-plugin-visualizer": "^5.8.3",
"serve": "^14.1.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
},
"dependencies": {
"18": "^0.0.0",
"@emotion/css": "^11.10.5",
"mithril": "^2.2.2",
"npm": "^9.1.2",
"tslib": "^2.4.1"
},
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=18.0.0 <19.0.0"
},
"scripts": {
"build": "rollup -c",
"dev": "npm-run-all --parallel start doc watch",
"doc": "grip --browser --quiet .",
"watch": "rollup -c -w",
"start": "serve .",
"test": "jest --watch --detectOpenHandles"
}
}