-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"name": "site-me",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fix": "npm run fix:eslint && npm run fix:stylelint && npm run fix:prettier",
"fix:eslint": "eslint ./src/**/*.{ts,tsx} --fix",
"fix:stylelint": "stylelint ./src/**/* --fix",
"fix:prettier": "prettier ./src/**/* --write"
},
"dependencies": {
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@types/react": "17.0.31",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"babel-plugin-styled-components": "^1.13.3",
"eslint": "8.0.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^2.5.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "4.4.4"
}
}