-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.48 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
{
"name": "ssr",
"private": true,
"scripts": {
"start": "meteor run",
"flow": "flow",
"visualize": "meteor --production --extra-packages bundle-visualizer",
"lint-staged": "lint-staged",
"lint-fix": "prettier --trailing-comma all --write \"{client,server,imports}/**/*.js*\""
},
"lint-staged": {
"*.ts*": ["prettier --trailing-comma all --write", "git add"],
"*.js*": ["prettier --trailing-comma all --write", "git add"]
},
"pre-commit": "lint-staged",
"dependencies": {
"apollo-cache-inmemory": "^1.1.0",
"apollo-client": "^2.0.2",
"apollo-link": "^1.0.0",
"apollo-link-http": "^1.1.0",
"apollo-server-express": "^1.1.0",
"babel-runtime": "^6.20.0",
"body-parser": "^1.17.2",
"core-js": "^2.5.0",
"emotion": "^7.0.13",
"express": "^4.15.4",
"graphql": "^0.10.5",
"graphql-tag": "^2.4.2",
"graphql-tools": "^1.1.0",
"meteor-node-stubs": "~0.2.4",
"optics-agent": "^1.1.6",
"react": "^15.6.1",
"react-apollo": "^2.0.1",
"react-dom": "^15.6.1",
"react-helmet": "^5.1.3",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"theming": "^1.1.0"
},
"devDependencies": {
"babel-plugin-transform-dead-code-elimination": "^2.2.2",
"babel-plugin-transform-inline-environment-variables": "^0.1.1",
"babel-plugin-transform-react-require": "^1.0.1",
"babel-preset-react": "6.24.1",
"lint-staged": "^4.0.3",
"pre-commit": "^1.2.2",
"prettier": "^1.5.3"
}
}