-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.46 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
{
"name": "game-of-life",
"version": "0.4.1",
"author": "Kaspars Putniņš",
"repository": "https://github.com/djentelmenis/web-of-life.git",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint --fix \"./src/**/*.{js,jsx,ts,tsx,json}\"",
"lint-types": "tsc --noEmit",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"update": "yarn upgrade-interactive",
"audit-npm": "yarn npm audit"
},
"dependencies": {
"@antv/g6": "^4.5.0",
"canvas-input-manager": "^0.4.0",
"nanoid": "^3.1.30",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@types/eslint": "^8.2.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-react": "^1.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-typescript": "^16.0.0",
"eslint-config-claims-intake": "^3.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.0",
"prettier": "^2.4.1",
"sass": "^1.43.4",
"typescript": "^4.3.2",
"vite": "^2.6.4"
}
}