-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 810 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 810 Bytes
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
{
"name": "with-jest",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "npm run build && next export",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"next": "latest",
"node-sass": "^4.14.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-select": "^3.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.1.0",
"@testing-library/react": "^9.4.0",
"@types/node": "^14.6.3",
"@types/react": "^16.9.49",
"babel-jest": "^25.5.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.5.4",
"react-test-renderer": "^16.12.0",
"typescript": "^4.0.2",
"url-loader": "^4.1.0"
},
"license": "MIT"
}