-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.96 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
{
"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": {
"@zeit/next-typescript": "^1.1.1",
"axios": "^0.19.0",
"compression": "^1.7.4",
"express": "^4.16.4",
"i18next": "^15.1.0",
"next": "^9.0.0",
"next-i18next": "^0.41.0",
"rc-progress": "^2.2.6",
"react": "^16.8.6",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.6",
"react-icons": "^3.2.2",
"react-inlinesvg": "^0.8.4",
"react-spinners": "^0.8.0",
"short-uuid": "^3.1.0",
"use-persisted-state": "^0.3.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/compression": "^0.0.36",
"@types/express": "^4.16.1",
"@types/next": "^7.0.9",
"@types/rc-progress": "^2.2.0",
"@types/react": "^16.7.7",
"@types/react-copy-to-clipboard": "^4.2.6",
"@types/react-dom": "^16.0.10",
"@types/styled-jsx": "^2.2.7",
"@types/use-persisted-state": "^0.3.0",
"cz-conventional-changelog": "3.0.2",
"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"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}