generated from eungyeole/typescript-next-recoil-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.4 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
53
54
55
56
57
58
59
60
61
{
"name": "typescript-next-recoil-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"axios": "^0.21.1",
"next": "10.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-loading-skeleton": "^2.2.0",
"recoil": "^0.2.0",
"swr": "^0.5.5"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.22",
"@types/node": "^15.0.1",
"@types/react": "^17.0.3",
"@types/recoil": "^0.0.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"enzyme": "^3.11.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"<rootDir>/src/__tests__/**/*.test.(ts|tsx)"
],
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.ts"
],
"testPathIgnorePatterns": [
"./.next/",
"./node_modules/"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.jest.json"
}
}
}
}