forked from veeramarni/kit.ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 4.28 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "reactql-app",
"version": "0.1.0",
"description": "ReactQL starter kit app",
"license": "UNLICENSED",
"private": true,
"scripts": {
"browser": "cross-env NODE_ENV=development WEBPACK_CONFIG=browser_dev webpack-dev-server",
"build": "cross-env NODE_ENV=production WEBPACK_CONFIG=browser_prod,server_prod webpack --colors",
"build-browser": "cross-env NODE_ENV=production WEBPACK_CONFIG=browser_prod webpack --colors",
"build-run": "cross-env NODE_ENV=production WEBPACK_CONFIG=browser_prod,server_prod webpack --colors && npm run server",
"build-static": "cross-env NODE_ENV=production WEBPACK_CONFIG=static webpack --colors",
"build-static-run": "npm run build-static && npm run static",
"css-types": "tcm -p 'src/**/!(*.global).@(+(c|s+(c|a)|le)ss)'",
"introspect-schema": "apollo-codegen introspect-schema https://api.graph.cool/simple/v1/cinomw2r1018601o42x5z69uc --output schema.json",
"generate-schema": "apollo-codegen generate **/*.gql --schema schema.json --target typescript --output src/schema.ts",
"schema": "npm run introspect-schema && npm run generate-schema",
"clean": "rimraf dist",
"lint": "eslint .",
"server": "node dist/server",
"server-dev": "cross-env NODE_ENV=development WEBPACK_CONFIG=server_dev webpack --colors",
"start": "run-p browser server-dev",
"static": "serve -s dist/public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/ip": "^0.0.29",
"@types/isomorphic-fetch": "^0.0.34",
"@types/koa": "^2.0.39",
"@types/koa-router": "^7.0.22",
"@types/koa-static": "^2.0.22",
"@types/node": "^7.0.15",
"@types/react": "^15.0.23",
"@types/react-dom": "^15.5.0",
"@types/react-helmet": "^5.0.2",
"@types/react-router-dom": "^4.0.3",
"@types/recompose": "^0.22.0",
"apollo-codegen": "^0.10.13",
"awesome-typescript-loader": "^3.1.3",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-react": "^6.24.1",
"brotli-webpack-plugin": "^0.3.0",
"chunk-manifest-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^0.4.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.0",
"css-loader": "^0.28.4",
"cssnano": "^3.10.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-compat": "^1.0.3",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"graphql-tag": "^2.2.1",
"html-webpack-plugin": "^2.28.0",
"iltorb": "^1.3.5",
"image-webpack-loader": "^3.3.1",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"node-sass": "^4.5.3",
"node-zopfli": "^2.0.2",
"npm-run-all": "^4.0.2",
"postcss-cssnext": "2.11.0",
"postcss-loader": "^2.0.5",
"postcss-nested": "^2.0.2",
"progress-bar-webpack-plugin": "^1.9.3",
"resolve-url-loader": "^2.0.2",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.5",
"serve": "^5.1.5",
"style-loader": "^0.18.1",
"ts-graphql-plugin": "^1.0.0",
"typed-css-modules": "^0.2.0",
"typescript": "^2.3.2",
"webpack": "^2.6.1",
"webpack-bundle-analyzer": "^2.8.2",
"webpack-chunk-hash": "^0.4.0",
"webpack-config": "^7.0.0",
"webpack-dev-server": "^2.4.5",
"webpack-manifest-plugin": "^1.1.0",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"boxen": "^1.1.0",
"chalk": "^1.1.3",
"ip": "^1.1.5",
"isomorphic-fetch": "^2.2.1",
"koa": "^2.2.0",
"koa-helmet": "^3.1.0",
"koa-router": "^7.2.0",
"koa-send": "^4.1.0",
"microseconds": "^0.1.0",
"react": "^15.5.4",
"react-apollo": "^1.2.0",
"react-dom": "^15.5.4",
"react-helmet": "^5.1.3",
"react-hot-loader": "^3.0.0-beta.6",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"recompose": "^0.23.1",
"redux": "^3.6.0",
"regenerator-runtime": "^0.10.5",
"tslib": "^1.6.0"
}
}