-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
68 lines (68 loc) · 1.61 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
{
"name": "create-apollo-app",
"version": "0.0.37",
"description": "Apollo GraphQL apps creator",
"author": "Victor Vlasenko <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sysgears/jsapp.git"
},
"bugs": {
"url": "https://github.com/sysgears/jsapp/issues"
},
"homepage": "https://github.com/sysgears/jsapp/packages/create-apollo-app#readme",
"scripts": {
"clean": "rm -rf ./lib",
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint -p tsconfig.json --fix -c tslint.json",
"tests": "jest --passWithNoTests",
"test": "yarn tests && yarn lint",
"prepublishOnly": "yarn clean && yarn build"
},
"bin": {
"create-apollo-app": "create-apollo-app.js"
},
"files": [
"create-apollo-app.js",
"lib/*.js",
"lib/*.d.ts",
"lib/*.map",
"templates"
],
"devDependencies": {
"@types/node": "^7.0.18",
"jest": "^24.5.0",
"prettier": "^1.6.1",
"ts-jest": "^24.0.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.5.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^3.3.3"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"parser": "babylon"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"dependencies": {
"@larix/generator": ">=0.1.4",
"chalk": "^2.4.2",
"source-map-support": "^0.5.6"
}
}