-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"name": "with-jest",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"clone": "^2.1.2",
"codemirror": "^5.51.0",
"debounce": "^1.2.0",
"next": "^9.3.2",
"react": "16.12.0",
"react-codemirror2": "^6.0.0",
"react-dom": "16.12.0",
"react-json-tree": "^0.11.2"
},
"devDependencies": {
"@babel/runtime-corejs2": "^7.8.7",
"@testing-library/jest-dom": "^5.1.0",
"@testing-library/react": "^9.4.0",
"@types/clone": "^0.1.30",
"@types/debounce": "^1.2.0",
"@types/jest": "^25.1.4",
"@types/node": "^13.7.0",
"@types/react": "^16.9.19",
"@types/react-json-tree": "^0.6.11",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.18.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"react-test-renderer": "^16.12.0",
"typescript": "^3.7.5"
}
}