-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 838 Bytes
/
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
{
"name": "connect4",
"private": true,
"version": "1.3.5",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "vite",
"build": "rm -rf dist && tsc && vite build",
"postbuild": "node postbuild.js",
"preview": "yarn build && vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"lint": "tsc --noEmit",
"test": "jest"
},
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"sass": "^1.69.7",
"ts-jest": "^29.1.1",
"typescript": "^5.4.5",
"vite": "^5.3.1"
},
"dependencies": {
"tsc": "^2.0.4"
}
}