-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.43 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": "next-app-tdd",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"test": "jest -i",
"test:watch": "yarn test --watchAll",
"test:unit": "yarn test --config=jest-unit.config.js",
"test:unit:watch": "yarn test --config=jest-unit.config.js --watchAll",
"test:integration": "yarn test --config=jest-integration.config.js",
"test:integration:watch": "yarn test --config=jest-integration.config.js --watchAll",
"test:coverage": "yarn test --coverage",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@tailwindcss/ui": "^0.7.2",
"axios": "^0.26.0",
"immer": "^9.0.12",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"tailwindcss": "^3.0.23",
"zustand": "^3.7.1"
},
"devDependencies": {
"@faker-js/faker": "^6.0.0-alpha.7",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"eslint": "8.10.0",
"eslint-config-next": "^12.1.0",
"eslint-plugin-testing-library": "^5.0.5",
"jest": "^27.5.1",
"miragejs": "^0.1.43",
"postcss": "^8.4.7",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.4.1",
"react-test-renderer": "^16.9.0",
"typescript": "4.5.5"
}
}