-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.43 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint **/*.tsx --fix",
"format": "prettier . --write",
"prepare": "husky install"
},
"dependencies": {
"date-fns": "^2.21.3",
"gray-matter": "^4.0.3",
"lodash.uniqby": "^4.7.0",
"next": "10.0.6",
"next-seo": "^4.20.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"remark": "^13.0.0",
"remark-html": "^13.0.1",
"styled-components": "^5.2.1",
"typed.js": "^2.0.12"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@types/node": "^14.14.24",
"@types/react": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"awesome-typescript-loader": "^5.2.1",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-postcss-modules": "^1.2.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.2",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "^4.1.3",
"typescript-plugin-styled-components": "^1.4.4"
},
"lint-staged": {
"*.(ts|tsx)": [
"eslint"
],
"*.--write": "prettier --write"
}
}