This repository has been archived by the owner on Feb 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.34 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
{
"name": "treelab-client",
"version": "1.0.0",
"description": "Treelab frontend NextJs + Typescript ",
"main": "index.js",
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production next build && DEBUG=express:* node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caminerinc/treelab-client.git"
},
"author": "Necmettin Karakaya",
"license": "ISC",
"bugs": {
"url": "https://github.com/caminerinc/treelab-client/issues"
},
"homepage": "https://github.com/caminerinc/treelab-client#readme",
"dependencies": {
"@zeit/next-typescript": "^1.1.1",
"apollo-boost": "^0.3.1",
"apollo-link-context": "^1.0.15",
"apollo-link-state": "^0.4.2",
"apollo-upload-client": "^10.0.0",
"cookie": "^0.3.1",
"express": "^4.16.4",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"isomorphic-unfetch": "^3.0.0",
"next": "^8.0.3",
"next-page-transitions": "^1.0.0-alpha.6",
"next-routes": "^1.4.2",
"react": "^16.8.4",
"react-apollo": "^2.5.2",
"react-dom": "^16.8.4",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@types/apollo-upload-client": "^8.1.1",
"@types/cookie": "^0.3.2",
"@types/lodash": "^4.14.120",
"@types/lodash.get": "^4.4.4",
"@types/lodash.throttle": "^4.1.4",
"@types/next": "7.0.6",
"@types/react-beautiful-dnd": "^10.0.1",
"@types/styled-components": "^4.1.12",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-define": "^1.3.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"nodemon": "^1.18.6",
"prettier": "1.15.1",
"pretty-quick": "^1.8.0",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^3.6.0",
"typescript": "^3.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts, tsx}": [
"prettier --write",
"tslint --fix",
"git add"
],
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
}
}