-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "simple-flight-picker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node server.js",
"build": "next build ./src",
"now-build": "yarn build",
"start": "NODE_ENV=production node server.js",
"test": "jest",
"test:watch": "jest --watch",
"tsc": "tsc -p src/tsconfig.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@date-io/moment": "^1.3.8",
"@material-ui/core": "^4.2.1",
"@material-ui/pickers": "^3.2.0",
"isomorphic-unfetch": "^3.0.0",
"moment": "^2.24.0",
"next": "^9.0.2",
"next-redux-wrapper": "^3.0.0-alpha.3",
"normalizr": "^3.4.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-select": "^3.0.4",
"react-sizes": "^2.0.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"styled-components": "^4.3.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/next": "^8.0.6",
"@types/next-redux-wrapper": "^2.0.2",
"@types/node": "^12.6.6",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.1.1",
"@types/react-select": "^3.0.0",
"@types/react-sizes": "^2.0.0",
"@types/styled-components": "^4.1.18",
"@types/uuid": "^3.4.5",
"babel-plugin-styled-components": "^1.10.6",
"jest": "^24.8.0",
"redux-devtools-extension": "^2.13.8",
"typescript": "^3.5.3"
},
"prettier": {
"printWidth": 120
}
}