forked from codefordenver/members
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.72 KB
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": "members",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"apollo-cache-inmemory": "^1.1.9",
"apollo-client": "^2.2.5",
"apollo-link-context": "^1.0.7",
"apollo-link-http": "^1.5.1",
"auth0-js": "^8.12.2",
"date-fns": "^1.29.0",
"graphql": "^0.13.1",
"graphql-tag": "^2.8.0",
"marked": "^0.3.16",
"material-ui": "^1.0.0-beta.35",
"react": "^16.2.0",
"react-apollo": "^2.0.4",
"react-dom": "^16.2.0",
"react-ga": "^2.4.1",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.10"
},
"lint-staged": {
"{src,bin,server/src}/**/*.{js,json,css,graphql}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"prompt": "^1.0.0",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"start": "npm run check-version && react-scripts start",
"build": "react-scripts build && cpy build/index.html build --rename 404.html",
"lint": "eslint .",
"preinstall": "npm run check-version",
"postinstall": "npm install --prefix server",
"setup": "node ./bin/auth0setup/promptUser.js",
"gc": "cd ./server && dotenv -e ../.env.local graphcool",
"deployProdBackend": "cd ./server && graphcool deploy",
"check-version": "node ./bin/checkVersion.js"
},
"homepage": "https://members.codefordenver.org",
"devDependencies": {
"cpy-cli": "^1.0.1",
"dotenv": "^4.0.0",
"dotenv-cli": "^1.4.0",
"eslint": "^4.18.1",
"graphcool": "^0.9.2",
"husky": "^0.14.3",
"lint-staged": "^6.1.1",
"prettier": "^1.10.2",
"request": "^2.83.0",
"request-promise-native": "^1.0.5"
}
}