-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
{
"name": "next-typescript-boilerplate",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/toriiico/next-typescript-boilerplate.git"
},
"author": "'toriiico <pandeiro.hiitemasu@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npm run lint:es && npm run lint:css",
"lint:es": "eslint --ext .js,.jsx,.ts,.tsx \"./src\" --color",
"lint:css": "stylelint --color \"./src/**/*.{css,scss}\"",
"format": "prettier --write \"./src/**/*.{ts,tsx,scss,css}\"",
"stylelint-config-check": "stylelint-config-prettier-check"
},
"dependencies": {
"date-fns": "^2.23.0",
"gray-matter": "^4.0.3",
"next": "11.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"remark": "^13.0.0",
"remark-html": "^13.0.1",
"serialize-javascript": "^6.0.0"
},
"devDependencies": {
"@types/node": "^16.4.2",
"@types/react": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.2",
"sass": "^1.36.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-prettier": "^1.2.0",
"typescript": "^4.3.5"
}
}