-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.78 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
62
63
64
65
66
{
"name": "exonext",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@types/lodash": "^4.14.148",
"@types/lru-cache": "^5.1.0",
"@types/reactstrap": "^8.0.6",
"@zeit/next-sass": "^1.0.1",
"axios": "^0.19.0",
"bootstrap": "^4.3.1",
"cacheable-response": "^1.9.0",
"enzyme-adapter-react-16": "^1.15.1",
"express": "^4.17.1",
"formik": "^2.0.4",
"jquery": "^3.4.1",
"lodash": "^4.17.15",
"lru-cache": "^5.1.1",
"next": "9.1.3",
"next-redux-wrapper": "^4.0.1",
"node-sass": "^4.13.0",
"popper.js": "^1.16.0",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-markdown": "^4.2.2",
"react-redux": "^7.1.3",
"reactstrap": "^8.1.1",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"webpack": "^4.41.2",
"yup": "^0.27.0"
},
"devDependencies": {
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/express": "^4.17.2",
"@types/jest": "^24.0.23",
"@types/next": "^9.0.0",
"@types/node": "^12.12.7",
"@types/react": "^16.9.11",
"@types/react-redux": "^7.1.5",
"@types/redux-thunk": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"enzyme": "^3.10.0",
"eslint": "6.1.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"ts-jest": "^24.1.0",
"ts-node": "^8.5.2",
"typescript": "^3.7.2"
}
}