-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 930 Bytes
/
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
{
"name": "next-js-project-vanilla",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"stylelint": "stylelint \"**/*.scss\" --fix --allow-empty-input",
"prepare": "husky install"
},
"dependencies": {
"bootstrap": "^5.2.0",
"next": "12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-bootstrap": "^2.5.0",
"sass": "^1.54.5"
},
"devDependencies": {
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"stylelint": "^14.11.0",
"stylelint-checkstyle-formatter": "^0.1.2",
"stylelint-config-standard": "^28.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-scss": "^4.3.0"
}
}