-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 1.76 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
{
"name": "codebuddy",
"version": "1.0.0",
"description": "",
"main": "client/index.tsx",
"proxy": "http://localhost:5000",
"scripts": {
"start": "node index.tsx",
"server": "ts-node -O '{\"module\":\"commonjs\"}' server",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"precommit": "pretty-quick --staged && lint-staged"
},
"lint-staged": {
"*.js": "eslint"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/react-router": "^4.4.0",
"apollo-cache-inmemory": "^1.2.10",
"apollo-link-http": "^1.5.5",
"apollo-server-express": "^2.2.2",
"awesome-typescript-loader": "^5.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-register": "^6.26.0",
"concurrently": "^3.5.1",
"graphql": "^14.0.2",
"graphql-tag": "^2.9.2",
"graphql-yoga": "^1.16.7",
"jwks-rsa": "^1.3.0",
"react-apollo": "^2.1.11",
"source-map-loader": "^0.2.4",
"ts-loader": "^5.3.0",
"typescript": "^3.1.6"
},
"devDependencies": {
"@babel/preset-typescript": "^7.1.0",
"@types/graphql": "0.12.3",
"@types/jest": "21.1.8",
"@types/js-cookie": "2.1.0",
"@types/node": "8.5.1",
"@types/react": "^16.4.18",
"@types/react-dom": "16.0.4",
"@types/react-router-dom": "^4.3.1",
"babel-eslint": "^9.0.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"express-jwt": "^5.3.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"nodemon": "^1.18.3",
"prettier": "1.14.2",
"pretty-quick": "^1.6.0",
"webpack": "^4.24.0"
}
}