-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.34 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.34 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "gql-tsx",
"version": "1.0.0",
"description": "GraphQL and TSX application",
"repository": {
"git": ""
},
"main": "index.js",
"dependencies": {
"graphql": "0.10.3",
"graphql-server-koa": "1.0.0",
"graphql-tools": "1.1.0",
"koa": "2.3.0",
"koa-bodyparser": "4.2.0",
"koa-logger": "3.0.1",
"koa-passport": "3.0.0",
"koa-redis": "3.0.0",
"koa-router": "7.2.1",
"koa-session": "5.4.0",
"node-env-file": "0.1.8",
"passport-local": "1.0.0"
},
"devDependencies": {
"@types/del": "2.2.32",
"@types/graphql": "0.9.4",
"@types/gulp": "3.8.33",
"@types/gulp-nodemon": "0.0.30",
"@types/gulp-util": "3.0.31",
"@types/html-webpack-plugin": "2.28.0",
"@types/koa": "2.0.39",
"@types/koa-bodyparser": "3.0.23",
"@types/koa-logger": "2.0.2",
"@types/koa-passport": "2.0.4",
"@types/koa-router": "7.0.22",
"@types/node": "8.0.12",
"@types/passport-local": "1.0.30",
"@types/react": "15.0.38",
"@types/react-dom": "15.5.1",
"@types/react-hot-loader": "3.0.3",
"@types/redis": "2.6.0",
"@types/vinyl": "2.0.0",
"@types/webpack": "3.0.4",
"@types/webpack-dev-server": "2.4.0",
"awesome-typescript-loader": "3.2.1",
"del": "3.0.0",
"graphql-code-generator": "0.5.5",
"gulp": "3.9.1",
"gulp-nodemon": "2.2.1",
"gulp-typescript": "3.2.0",
"gulp-util": "3.0.8",
"html-webpack-plugin": "2.29.0",
"husky": "0.14.3",
"lint-staged": "4.0.1",
"map-stream": "0.0.7",
"prettier": "1.5.2",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-hot-loader": "3.0.0-beta.7",
"ts-node": "3.2.0",
"typescript": "2.4.1",
"vinyl": "2.1.0",
"webpack": "3.2.0",
"webpack-bundle-analyzer": "2.8.3",
"webpack-dev-server": "2.5.1"
},
"scripts": {
"build": "rm -rf ./build && tsc -p src --outDir ./build",
"prettier": "prettier --parser typescript --use-tabs --write --single-quote --trailing-comma all '**/*.ts?(x)' && prettier --parser graphql --use-tabs --write '**/*.gql'",
"ts-check": "tsc -p ./tsconfig.json --noEmit && tsc -p ./src/tsconfig.json --noEmit && tsc -p ./src/client/tsconfig.json --noEmit",
"precommit": "npm run ts-check && lint-staged"
},
"author": "",
"license": "ISC",
"lint-staged": {
"*.ts?(x)": [
"prettier --parser typescript --use-tabs --write --single-quote --trailing-comma all",
"git add"
],
"*.gql": ["prettier --parser graphql --use-tabs --write", "git add"]
}
}