-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "wordcheater",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"jest": "jest",
"checkEnv": "set",
"pwgui": "npx playwright codegen localhost:3000",
"pwh": "npx playwright test --headed",
"pw": "npx playwright test",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"pre-commit": [
"lint",
"jest",
"pw"
],
"dependencies": {
"bootstrap": "^5.1.3",
"cors": "^2.8.5",
"next": "^12.1.0",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-bootstrap": "^2.1.0",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-uuid": "^1.0.2",
"styled-components": "^5.3.3",
"swr": "^1.2.1",
"web-vitals": "^2.1.3"
},
"devDependencies": {
"@playwright/test": "^1.20.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"babel-jest": "^26.3.0",
"cypress": "^9.5.2",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"jest": "^26.6.3",
"playwright-watch": "^1.3.23",
"pre-commit": "^1.2.2"
}
}