-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.42 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
{
"name": "apollo-universal-starter-kit",
"private": true,
"version": "1.0.0",
"engines": {
"node": ">= 6.11.1",
"yarn": ">= 1.0.0"
},
"cacheDirectories": [
".cache"
],
"scripts": {
"build": "lerna run build --stream",
"clean": "lerna run clean --stream",
"exp": "yarn --cwd packages/mobile exp",
"start": "lerna run --scope=server start --stream",
"flow": "flow",
"tests": "lerna run tests --stream",
"test": "yarn tests && yarn lint",
"eslint": "eslint --fix --ext js --ext jsx --ext json .",
"tslint": "tslint --fix -p tsconfig.json -c tslint.json",
"lint": "yarn eslint && yarn tslint",
"seed": "lerna run --scope=server seed --stream",
"exp-publish": "lerna run --scope=mobile exp-publish --stream",
"watch": "spin watch",
"heroku-postbuild": "lerna run heroku-postbuild --stream",
"cli": "node tools/cli",
"precommit": "lint-staged",
"postinstall": "opencollective postinstall"
},
"lint-staged": {
"*.{js,jsx,json}": [
"eslint --fix",
"git add"
],
"*.{ts,tsx}": [
"tslint --fix",
"git add"
],
"*.graphql": [
"prettier --parser graphql --tab-width 4 --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/sysgears/apollo-universal-starter-kit"
},
"bugs": {
"url": "https://github.com/sysgears/apollo-universal-starter-kit/issues"
},
"homepage": "https://github.com/sysgears/apollo-universal-starter-kit",
"keywords": [
"apollo",
"universal",
"starter",
"graphql",
"react",
"redux"
],
"author": "SysGears INC",
"license": "MIT",
"workspaces": [
"packages/*"
],
"greenkeeper": {
"ignore": [
"graphql"
]
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/apollo-universal-starter-kit",
"logo": "https://opencollective.com/opencollective/logo.txt"
},
"devDependencies": {
"awesome-typescript-loader": "^3.4.1",
"husky": "^0.14.3",
"lerna": "^2.5.1",
"lint-staged": "^6.0.0",
"typescript": "^2.7.2",
"tslint": "^5.2.0",
"tslint-config-prettier": "^1.5.0",
"tslint-plugin-prettier": "^1.3.0"
},
"optionalDependencies": {
"dotenv": "^4.0.0",
"lodash": "^4.17.4"
},
"dependencies": {
"opencollective": "^1.0.3",
"spinjs": "^0.4.104"
},
"resolutions": {
"graphql": "^0.11.7",
"iterall": "^1.1.4"
}
}