This repository has been archived by the owner on Aug 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.72 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
{
"name": "the-lab",
"version": "0.1.0",
"private": true,
"license": "ISC",
"description": "The Basement Lab",
"repository": {
"type": "git",
"url": "https://github.com/basement-lab/the-lab.git"
},
"author": {
"name": "Derek Clair",
"email": "derek@derekclair.com",
"url": "https://github.com/derekclair"
},
"keywords": [
"graphql",
"apollo",
"redux",
"webpack3",
"styled-components",
"hot-module-loader",
"react",
"react fiber"
],
"main": "server/index.js",
"engines": {
"node": "~8.5.0",
"npm": "~5.3.0",
"yarn": "~1.1.x"
},
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"scripts": {
"start": "source env.local.sh && nodemon server --config config.nodemon.json",
"start:server": "source env.local.sh && nodemon server/graphql.js --config config.nodemon.json",
"build": "echo \"Error: no build specified\" && exit 1",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:css": "stylelint './client/**/*.js'"
},
"dependencies": {
"babel-plugin-inline-import": "^2.0.6",
"body-parser": "^1.18.2",
"chalk": "^2.1.0",
"connect-history-api-fallback": "^1.3.0",
"cors": "^2.8.4",
"express": "^4.15.4",
"friendly-errors-webpack-plugin": "^1.6.1",
"fs-extra": "^4.0.2",
"graphql": "^0.11.3",
"graphql-server-express": "^1.1.2",
"graphql-subscriptions": "^0.5.1",
"graphql-tag": "^2.4.2",
"graphql-tools": "^1.2.3",
"history": "^4.7.2",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.17.4",
"lodash": "^4.17.4",
"optics-agent": "^1.1.7",
"pg": "^7.3.0",
"progress-bar-webpack-plugin": "^1.10.0",
"react": "^16.0.0-rc.3",
"react-apollo": "^1.4.15",
"react-dom": "^16.0.0-rc.3",
"react-hot-loader": "^3.0.0-beta.7",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.7.2",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"style-loader": "^0.18.2",
"styled-components": "^2.1.2",
"subscriptions-transport-ws": "0.8.3",
"webpack": "^3.6.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.19.1",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-inline-import-graphql-ast": "^2.0.0",
"babel-plugin-styled-components": "^1.2.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^3.19.0",
"eslint-config-airbnb": "15.0.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "5.0.1",
"eslint-plugin-react": "^7.3.0",
"extract-text-webpack-plugin": "^3.0.0",
"nodemon": "^1.12.1",
"stylelint": "^8.1.1",
"stylelint-config-standard": "^17.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-custom-processor-loader": "^0.2.1",
"stylelint-processor-styled-components": "^1.0.0",
"webpack-bundle-analyzer": "^2.8.3",
"webpack-node-externals": "^1.6.0"
}
}