-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 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
55
{
"name": "cellex",
"version": "0.1.0",
"description": "Unidimensional cellular automaton explorer to highlight their unique properties",
"repository": "https://github.com/mathieucaroff/cellex",
"author": "Mathieu CAROFF <[email protected]>",
"license": "JAM",
"type": "module",
"packageManager": "[email protected]",
"main": "./src/expo/main.ts",
"engines": {
"node": ">=20.12.2"
},
"scripts": {
"check": "tsc --noEmit",
"checkwatch": "tsc --noEmit --watch",
"test": "vitest",
"build": "vite build",
"mcabuild": "vite build --base /cellex.d",
"dev": "vite --port 1111"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@rollup/pluginutils": "^5.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/nearley": "^2.11.2",
"@types/node": "^20.2.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.0.0",
"npm-check-updates": "^16.10.12",
"prettier": "^2.8.8",
"tsx": "^4.19.1",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-node": "^3.1.0",
"vitest": "^0.31.1"
},
"dependencies": {
"@ant-design/icons": "^5.1.3",
"@fastify/static": "^7.0.4",
"antd": "^5.8.4",
"dotenv": "^16.3.1",
"fastify": "^4.28.1",
"font-awesome": "^4.7.0",
"jimp": "^1.6.0",
"js-xxhash": "^2.0.0",
"nearley": "^2.20.1",
"posthog-js": "^1.189.0",
"react": "^18.0.10",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-markdown": "^8.0.7"
}
}