-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.48 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
{
"name": "blogring",
"version": "0.0.0",
"scripts": {
"dev": "node server.js & vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
"lint": "yarn lint:format && yarn lint:fix ",
"type-check": "tsc",
"start": "yarn build && NODE_ENV=production node server.js"
},
"engines": {
"node": "14.x"
},
"dependencies": {
"@react-spring/web": "^9.2.4",
"@stitches/react": "^0.2.3",
"culori": "^0.18.2",
"jotai": "^1.2.2",
"path": "^0.12.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-use-gesture": "^9.1.3",
"uuid": "^8.3.2",
"express": "^4.17.1",
"ws": "^7.5.3"
},
"devDependencies": {
"yarn": "^1.22.11",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"@vitejs/plugin-react-refresh": "^1.3.5",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"typescript": "^4.3.2",
"vite": "^2.4.3"
}
}