-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.16 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
{
"name": "fullstack-technical-test",
"version": "1.0.0",
"description": "Pick the correct items in the order shown",
"main": "index.js",
"repository": "",
"author": "",
"scripts": {
"start": "next ./src -p 8080",
"standard": "standard",
"test": "jest"
},
"pre-commit": [
"standard"
],
"standard": {
"globals": [
"describe",
"it",
"expect",
"jest",
"test"
]
},
"dependencies": {
"axios": "^0.18.0",
"isomorphic-unfetch": "^3.0.0",
"jest": "^24.7.1",
"memoize-one": "^5.0.2",
"moment": "^2.24.0",
"next": "^9.3.2",
"prop-types": "^15.7.2",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.0.0",
"babel-plugin-inline-react-svg": "^1.0.1",
"babel-plugin-styled-components": "^1.10.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"pre-commit": "^1.2.2",
"standard": "^12.0.1"
}
}