-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.36 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
{
"name": "example",
"private": true,
"scripts": {
"build": "next build",
"cypress:headless": "cypress run",
"dev": "next dev",
"e2e": "node ./scripts/start-server-and-test.js 'yarn start' http://localhost:3000 'yarn cypress:headless'",
"lint": "next lint",
"list-files": "node ./scripts/list-files.js",
"prettier": "prettier -w .",
"prettier:check": "prettier -c .",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci --no-watchman --reporters=default --reporters=jest-junit --",
"type-check": "tsc --noEmit; tsc -p cypress/tsconfig.json --noEmit"
},
"dependencies": {
"antd": "^4.16.13",
"next": "12.0.2",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/runtime": "^7.16.7",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/cypress": "^1.1.3",
"@types/node": "16.11.6",
"@types/react": "17.0.33",
"@types/wait-on": "^5.3.1",
"babel-jest": "^27.3.1",
"cypress": "^9.2.0",
"eslint": "7",
"eslint-config-next": "12.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"jest-junit": "^13.0.0",
"prettier": "^2.4.1",
"react-test-renderer": "^17.0.2",
"typescript": "4.4.4",
"wait-on": "^6.0.0"
},
"packageManager": "yarn@3.2.0"
}