-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "vg-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "yarn lint:js && yarn lint:css",
"lint": "yarn lint:js:fix && yarn lint:css:fix",
"lint:js": "next lint",
"lint:js:fix": "yarn lint:js --fix",
"lint:css": "yarn stylelint \"src/**/*.css\"",
"lint:css:fix": "yarn lint:css --fix",
"prepare": "husky install"
},
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-next": "12.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": ">=10",
"prettier": "^2.7.1",
"stylelint": "^14.9.1",
"stylelint-config-standard": "^26.0.0"
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"autoprefixer": "^10.4.7",
"axios": "^0.27.2",
"classnames": "^2.2.6",
"i18next": "^21.8.11",
"i18next-browser-languagedetector": "^6.1.0",
"next": "^12.2.0",
"numeral": "^2.0.6",
"postcss": "^8.4.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.8.12",
"recoil": "^0.7.4",
"tailwindcss": "^3.1.4"
},
"_lint-staged": {
"*.js": "next lint --fix --file",
"*.css": "stylelint --fix"
}
}