-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "testingreact.dev",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.19.2",
"document.contains": "^1.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"styled-components": "^5.1.1",
"use-debounce": "^3.4.3"
},
"scripts": {
"test": "jest",
"testWatch": "jest --watch",
"dev": "concurrently -i -k npm:dev:client npm:dev:server",
"dev:server": "node api/index.js",
"dev:client": "parcel src/index.html --port 3000",
"prettier": "prettier --write '**/*.{ts,tsx,js}'"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"@jackfranklin/test-data-bot": "^1.3.0",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.3",
"@testing-library/react-hooks": "^3.3.0",
"@types/jest": "^24.0.18",
"@types/jest-axe": "^3.2.2",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.9",
"@types/styled-components": "^5.1.0",
"concurrently": "^5.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jest": "^26.1.0",
"jest-axe": "^3.4.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"puppeteer": "^5.0.0",
"ts-jest": "^26.1.1",
"typescript": "~3.9.6"
}
}