forked from poseidon-network/poseidon.network
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.6 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.6 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
{
"scripts": {
"build": "next build",
"clean": "rimraf out",
"dev": "ts-node index.ts",
"pre-deploy": "sh pre-deploy.sh",
"deploy": "npm run export && npm run pre-deploy && gh-pages -t -d out",
"export": "NODE_ENV=production npm run build && next export",
"lint": "tslint --force --format verbose \"./components/**/*.tsx\"",
"start": "NODE_ENV=production ts-node index.ts",
"tsc": "tsc"
},
"dependencies": {
"@lifeomic/axios-fetch": "^1.4.0",
"@zeit/next-typescript": "^1.1.1",
"apollo-cache-inmemory": "^1.4.3",
"apollo-client": "^2.4.13",
"apollo-link": "^1.2.8",
"apollo-link-error": "^1.1.7",
"apollo-link-http": "^1.5.11",
"apollo-link-state": "^0.4.2",
"apollo-upload-client": "^10.0.0",
"axios": "^0.19.0",
"buffer": "^5.2.1",
"compression": "^1.7.4",
"express": "^4.16.4",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"i18next": "^15.1.0",
"ipfs-api": "^26.1.2",
"next": "^7.0.2",
"next-i18next": "^0.39.0",
"rc-progress": "^2.2.6",
"react": "^16.8.6",
"react-animate-on-scroll": "^2.1.5",
"react-apollo": "^2.4.1",
"react-content-loader": "^3.4.1",
"react-copy-to-clipboard": "^5.0.1",
"react-countup": "^4.1.3",
"react-dom": "^16.8.6",
"react-dropzone": "^7.0.1",
"react-facebook-login": "^4.1.1",
"react-icons": "^3.2.2",
"react-inlinesvg": "^0.8.4",
"react-rellax": "^1.0.3",
"react-social-sharing": "^2.0.1",
"short-uuid": "^3.1.0"
},
"devDependencies": {
"@types/apollo-upload-client": "^8.1.1",
"@types/axios": "^0.14.0",
"@types/compression": "^0.0.36",
"@types/express": "^4.16.1",
"@types/graphql": "^14.0.7",
"@types/next": "^7.0.5",
"@types/rc-progress": "^2.2.0",
"@types/react": "^16.7.7",
"@types/react-content-loader": "^3.1.3",
"@types/react-copy-to-clipboard": "^4.2.6",
"@types/react-countup": "^4.0.1",
"@types/react-dom": "^16.0.10",
"@types/react-dropzone": "^4.2.2",
"@types/react-facebook-login": "^4.1.0",
"@types/styled-jsx": "^2.2.7",
"gh-pages": "^2.0.1",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"rimraf": "^2.6.2",
"ts-node": "^8.1.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.1.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"yarn run lint",
"git add"
]
},
"prettier": {
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "all"
}
}