forked from kriasoft/react-firebase-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.52 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
112
113
114
115
116
117
118
119
{
"name": "app",
"version": "0.0.0",
"private": true,
"main": "build/app.js",
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
},
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.44",
"@babel/runtime": "^7.0.0-beta.44",
"@firebase/app": "^0.2.0",
"@material-ui/icons": "^1.0.0-beta.42",
"babel-plugin-lodash": "^3.3.2",
"body-parser": "^1.18.2",
"cookie": "^0.3.1",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.9",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"firebase-admin": "^5.12.0",
"firebase-functions": "^1.0.1",
"graphql": "^0.13.2",
"graphql-relay": "^0.5.5",
"history": "^4.7.2",
"idx": "^2.3.0",
"jsonwebtoken": "^8.2.1",
"jwt-passport": "^0.0.5",
"knex": "^0.14.6",
"lodash": "^4.17.10",
"material-ui": "^1.0.0-beta.42",
"moment": "^2.22.1",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth20": "^1.0.0",
"pg": "^7.4.1",
"prop-types": "^15.6.1",
"query-string": "^6.0.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-relay": "^1.5.0",
"relay-runtime": "^1.5.0",
"request": "^2.85.0",
"request-promise-native": "^1.0.5",
"serialize-javascript": "^1.5.0",
"slug": "^0.9.1",
"styled-components": "^3.2.6",
"universal-router": "^6.0.0",
"uuid": "^3.2.1",
"validator": "^9.4.1"
},
"devDependencies": {
"@babel/register": "^7.0.0-beta.44",
"babel-plugin-relay": "^1.5.0",
"babel-plugin-styled-components": "^1.5.1",
"chai": "^4.1.2",
"dotenv": "^5.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-prettier": "^2.6.0",
"flow-bin": "^0.70.0",
"gh-pages": "^1.1.0",
"husky": "^0.15.0-rc.13",
"lint-staged": "^7.0.4",
"prettier": "^1.12.1",
"raw-loader": "^1.0.0-beta.0",
"react-app-tools": "^2.0.3",
"relay-compiler": "^1.5.0",
"stylelint": "^9.2.0",
"stylelint-config-primer": "^2.2.5",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components-processor": "^0.1.1",
"stylelint-order": "^0.8.1",
"stylelint-processor-styled-components": "^1.3.1"
},
"lint-staged": {
"*.js": [
"yarn run eslint --no-ignore --fix --max-warnings=0",
"yarn run prettier --write",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"update-schema": "node ./scripts/update-schema",
"relay": "relay-compiler --src ./src --schema ./src/schema.graphql --include \"**/*.js\"",
"setup": "node ./scripts/setup",
"start": "react-app start",
"build": "react-app build",
"test": "react-app test --env=jsdom",
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" . && stylelint \"src/**/*.js\"",
"lint-fix": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" --fix .",
"db-save": "node ./scripts/db-save",
"db-change": "knex migrate:make",
"db-migrate": "knex migrate:latest",
"db-rollback": "knex migrate:rollback",
"db-seed": "knex seed:run",
"deploy": "yarn install && yarn build && firebase use dev && firebase deploy",
"deploy-prod": "yarn install && yarn build && firebase use prod && firebase deploy"
}
}