-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "apotdevin.com",
"version": "1.0.1",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"tslint": "tslint -p . -c tslint.json"
},
"dependencies": {
"date-fns": "2.16.1",
"gray-matter": "4.0.2",
"isomorphic-unfetch": "^3.1.0",
"lodash.debounce": "^4.0.8",
"lodash.sortby": "^4.7.0",
"next": "^10.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-feather": "^2.0.9",
"react-markdown": "^5.0.2",
"react-query": "^2.26.2",
"react-syntax-highlighter": "^15.3.0",
"styled-components": "^5.2.1",
"styled-theming": "^2.2.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "^14.14.8",
"@types/react": "^16.9.56",
"babel-plugin-styled-components": "^1.11.1",
"devmoji": "^2.1.11",
"dotenv": "8.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"standard-version": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"tslint-react-hooks": "^2.2.2",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "devmoji -e",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.+(ts|tsx)": [
"prettier --write",
"tslint"
]
}
}