-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.19 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
{
"name": "@derekmisler/whatever-the-weather",
"description": "Whether the weather be fine,\nOr whether the weather be not,\nWhether the weather be cold,\nOr whether the weather be hot,\nWe'll weather the weather\nWhatever the weather,\nWhether we like it or not.",
"repository": {
"type": "git",
"url": "https://github.com/zeit/now/tree/master/examples/nextjs"
},
"license": "MIT",
"scripts": {
"dev": "npx next",
"build": "npx next build",
"static": "npm run build && npx next export",
"start": "npx next start",
"stylelint": "npx stylelint './**/*.tsx'",
"format": "npx prettier --write '**/*.{ts,tsx}'",
"deploy": "npm run build && npx now",
"deploy:prod": "npm run build && npx now --prod",
"clean:all": "rm -rf out && rm -rf node_modules && rm -rf package-lock.json && npm cache clean --force && npm i --no-audit"
},
"dependencies": {
"@material-ui/core": "^4.8.3",
"@material-ui/icons": "^4.5.1",
"axios": "^0.19.1",
"js-cookie": "^2.2.1",
"keymirror": "^0.1.1",
"lodash": "^4.17.15",
"moment-timezone": "^0.5.27",
"next": "^9.1.6",
"next-redux-wrapper": "^4.0.1",
"query-string": "^6.10.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-persist-cookie-storage": "^1.0.0",
"redux-thunk": "^2.3.0",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-transform-react-display-name": "^7.8.3",
"@types/googlemaps": "^3.39.2",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.6",
"@types/styled-components": "^4.4.1",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.0",
"now": "^16.7.0",
"prettier": "^1.18.2",
"redux-devtools-extension": "^2.13.8",
"stylelint": "^11.1.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0",
"typescript": "^3.7.3"
}
}