-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
111 lines (111 loc) · 3.09 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "next-blog-firestore",
"version": "0.1.0",
"private": true,
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node server.js",
"dev": "node server.js",
"build": "next build",
"precommit": "./node_modules/.bin/lint-staged",
"seed": "node scripts/restore -a firebase-service-key.json -i ./scripts/seed.json",
"backup": "node scripts/backup -a firebase-service-key.json -o .backups"
},
"keywords": [
"blog",
"next.js",
"next",
"firestore",
"mobx-state-tree",
"styled-components"
],
"author": "Alexander Suevalov <[email protected]>",
"lint-staged": {
"*.js": [
"./node_modules/.bin/eslint --fix",
"./node_modules/.bin/prettier --write",
"git add"
]
},
"now": {
"env": {
"F_PROJECT_ID": "@next-blog-firestore-project-id",
"F_AUTH_DOMAIN": "@next-blog-firestore-auth-domain",
"F_API_KEY": "@next-blog-firestore-api-key"
}
},
"devDependencies": {
"babel-eslint": "8.2.1",
"babel-plugin-import": "1.6.3",
"babel-plugin-root-import": "5.1.0",
"babel-plugin-styled-components": "1.4.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"chalk": "2.3.0",
"dotenv": "4.0.0",
"eslint": "4.15.0",
"eslint-config-prettier": "2.9.0",
"eslint-config-react-app": "2.1.0",
"eslint-plugin-flowtype": "2.41.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.5.0",
"eslint-plugin-react": "7.5.1",
"firebase-admin": "5.8.0",
"grpc": "1.7.1",
"husky": "0.14.3",
"jsonfile": "4.0.0",
"lint-staged": "6.0.0",
"next": "4.2.3",
"ora": "1.3.0",
"prettier": "1.10.2",
"prompt-confirm": "1.2.0",
"raw-loader": "0.5.1",
"yargs": "10.0.3"
},
"dependencies": {
"@firebase/app": "0.1.6",
"@firebase/auth": "0.3.2",
"@firebase/firestore": "0.2.3",
"@firebase/polyfill": "0.1.4",
"antd": "2.13.10",
"cash-dom": "1.3.6",
"express": "4.16.2",
"fontfaceobserver": "2.0.13",
"isomorphic-unfetch": "2.0.0",
"lodash.assign": "4.2.0",
"lodash.debounce": "4.0.8",
"lodash.keys": "4.2.0",
"lodash.sortby": "4.7.0",
"lodash.values": "4.3.0",
"lru-cache": "4.1.1",
"marksy": "6.0.3",
"mobx": "3.4.1",
"mobx-react": "4.3.5",
"mobx-state-tree": "1.3.1",
"next-routes": "^1.1.0",
"nprogress": "0.2.0",
"polished": "1.9.0",
"react": "16.2.0",
"react-burger-menu": "2.2.3",
"react-dom": "16.2.0",
"react-icon-base": "2.1.2",
"react-lazyload": "2.3.0",
"react-medium-image-zoom": "3.0.9",
"react-no-ssr": "1.1.0",
"react-player": "0.25.3",
"react-scroll-up": "1.3.3",
"react-share": "1.19.0",
"react-simplemde-editor": "3.6.11",
"react-styled-flexboxgrid": "2.1.1",
"react-visibility-sensor": "3.11.0",
"serve-static": "1.13.1",
"styled-components": "2.4.0",
"tinytime": "0.2.6",
"xmlhttprequest": "1.8.0"
},
"resolutions": {
"react": "16.2.0",
"react-dom": "16.2.0"
}
}