-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·64 lines (64 loc) · 1.71 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
{
"name": "meetehs",
"version": "0.2.1",
"description": "MeetehS",
"repository": {
"type": "git",
"url": "https://github.com/MeetehS/meetehs.git"
},
"author": "jelly",
"license": "ISC",
"scripts": {
"precommit": "lint-staged",
"flow": "flow",
"analyze": "source-map-explorer build/static/js/main.*",
"start:client": "react-scripts start",
"start:server": "nodemon --watch server server",
"start": "npm-run-all --parallel start:server start:client",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "pm2 deploy ecosystem.config.js production"
},
"dependencies": {
"apollo-cache-inmemory": "^1.1.3",
"apollo-client": "^2.1.0",
"apollo-link-http": "^1.3.0",
"bootstrap": "^3.3.7",
"crawler": "^1.1.1",
"graphql": "^0.11.7",
"graphql-server-koa": "^1.2.0",
"graphql-tag": "^2.6.0",
"graphql-tools": "^2.12.0",
"koa": "^2.4.1",
"koa-bodyparser": "^4.1.0",
"koa-compress": "^2.0.0",
"koa-router": "^7.3.0",
"koa-send": "^4.1.1",
"koa-static": "^4.0.2",
"marked": "^0.3.7",
"moment": "^2.19.3",
"mongoose": "^4.13.6",
"react": "^16.2.0",
"react-apollo": "^2.0.1",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"flow-bin": "^0.60.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"nodemon": "^1.12.5",
"npm-run-all": "^4.1.2",
"prettier": "^1.9.1",
"react-scripts": "^1.0.17",
"source-map-explorer": "^1.5.0"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --singl3e-quote --write",
"git add"
]
},
"proxy": "http://localhost:4000"
}