-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 4.76 KB
/
package.json
File metadata and controls
145 lines (145 loc) · 4.76 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "qraphql-experiments-apollo",
"private": true,
"version": "0.1.0",
"description": "Experimenting with Apollo",
"author": "Pavel Davydov",
"scripts": {
"server": "cross-env PORT=4001 node ./server.js",
"start": "cross-env NODE_ENV=development PORT=4000 node ./bin/webpack-dev-server.js",
"build:dev": "cross-env NODE_ENV=development webpack --config ./webpack.config.dev",
"build:prod": "cross-env NODE_ENV=production webpack --config ./webpack.config.prod",
"build:analyze": "cross-env NODE_ENV=production webpack --config ./webpack.config.analyze",
"build:html:dev": "cross-env NODE_ENV=development node ./bin/build-html",
"build:html:prod": "cross-env NODE_ENV=production node ./bin/build-html",
"clean": "rimraf 'dist/*'",
"all:dev": "npm run clean && npm run build:dev && npm run build:html:dev",
"all:prod": "npm run clean && npm run build:prod && npm run build:html:prod",
"precommit": "lint-staged",
"typecheck": "flow check --max-warnings=0",
"lint": "eslint ./src",
"lint:ts": "tslint -p tsconfig.json",
"prettier": "prettier --write './src/**/*.js'",
"test": "jest",
"test:updateSnapshot": "jest --updateSnapshot",
"coverage": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/react": "^16.4.11",
"@types/react-dom": "^16.0.7",
"apollo-server-express": "^1.3.2",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-jest": "^22.2.2",
"babel-loader": "^7.1.5",
"babel-plugin-inline-import": "^2.0.6",
"babel-plugin-inline-import-graphql-ast": "^2.1.2",
"babel-plugin-module-alias": "^1.6.0",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"body-parser": "^1.18.2",
"common-tags": "^1.5.1",
"compression-webpack-plugin": "^1.1.11",
"copy-webpack-plugin": "^4.5.2",
"cors": "^2.8.4",
"cross-env": "^3.1.3",
"css-loader": "^0.26.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.3.0",
"enzyme-to-json": "^3.3.1",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-jss": "^3.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"express": "^4.16.2",
"flow-bin": "^0.79.1",
"graphql": "^0.12.3",
"graphql-iso-date": "^3.5.0",
"graphql-tag": "^2.6.1",
"graphql-tools": "^2.19.0",
"html-minifier": "^3.5.7",
"husky": "^0.14.3",
"ignore-styles": "^5.0.1",
"jest": "^22.2.2",
"jest-transform-graphql": "^2.1.0",
"json-loader": "^0.5.7",
"lint-staged": "^6.0.0",
"mini-css-extract-plugin": "^0.4.1",
"module-alias": "^2.0.3",
"node-fetch": "^2.0.0",
"prettier": "1.10.2",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"sinon": "^4.3.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.13.1",
"ts-jest": "^23.1.4",
"ts-loader": "^4.5.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0",
"tslint-react-recommended": "^1.0.15",
"typescript": "^3.0.1",
"webpack": "^4.16.5",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-manifest-plugin": "^2.0.3"
},
"dependencies": {
"apollo-cache-inmemory": "^1.2.8",
"apollo-client": "^2.4.0",
"apollo-link-batch-http": "^1.2.2",
"apollo-link-http": "^1.5.4",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"css-functions": "^1.0.5",
"jss": "^9.8.7",
"jss-preset-default": "^4.5.0",
"lodash": "^4.17.10",
"normalize-jss": "^4.0.0",
"polished": "^1.9.3",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-apollo": "^2.1.11",
"react-autosize-textarea": "^4.0.0",
"react-dom": "^16.4.2",
"react-infinite-scroller": "^1.2.0",
"react-jss": "^8.6.1",
"react-pose": "^3.2.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-tippy": "^1.2.2",
"whatwg-fetch": "^2.0.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint",
"prettier --write",
"jest --bail --findRelatedTests",
"git add"
],
"*.js": [
"eslint --fix",
"prettier --write",
"jest --bail --findRelatedTests",
"git add"
]
},
"license": "MIT"
}