-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.33 KB
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
{
"name": "reactjs-nextjs-typescript-boilerplate",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"test": "jest --env=jsdom",
"test:watch": "jest --verbose --env=jsdom --watchAll",
"test:coverage": "jest --coverage --env=jsdom"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/setupTests.js"
]
},
"dependencies": {
"axios": "^0.19.2",
"cookie-parser": "^1.4.5",
"jsonwebtoken": "^8.5.1",
"next": "latest",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@types/cookie": "^0.4.0",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.6",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/redux-saga": "^0.10.5",
"axios-mock-adapter": "^1.18.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"jest": "^26.0.1",
"jest-css-modules": "^2.1.0",
"redux-devtools-extension": "^2.13.8",
"ts-jest": "^26.1.0",
"typescript": "^3.9.3"
},
"license": "MIT"
}