-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "artificial-life",
"version": "1.11.0",
"description": "evolution simulator",
"scripts": {
"dev": "vite --force --host",
"ts:watch": "tsc --noEmit -w",
"build": "tsc && vite build --base=/evolution-of-artificial-life/",
"build:fast": "vite build --base=./ -w",
"preview": "vite preview",
"eslint": "eslint --ext .tsx,.ts ./src",
"eslint:fix": "eslint --ext .tsx,.ts ./src --fix",
"test": "vitest"
},
"author": "Yurii Morozov",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@types/styled-components": "^5.1.29",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.52.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.33.2",
"typescript": "^4.9.5",
"vite": "^4.5.0",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-pwa": "^0.16.6",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.30.1"
},
"dependencies": {
"effector": "^23.1.0",
"effector-react": "^23.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"styled-components": "^5.3.11",
"usehooks-ts": "^2.9.1",
"vite-plugin-package-version": "^1.0.2"
}
}