-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.44 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
{
"name": "codeweek",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npm-run-all lint:*",
"lint:js": "next lint",
"lint:css": "stylelint --fix './**/*.css' --ignore-path .gitignore",
"format": "prettier --write . --ignore-path .gitignore",
"test": "npm-run-all test:*",
"test:lint": "npm-run-all test:lint:*",
"test:lint:js": "next lint",
"test:lint:css": "stylelint './**/*.css' --ignore-path .gitignore",
"test:format": "prettier --check . --ignore-path .gitignore"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.6.6",
"next": "^12.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-prettier": "^2.0.0"
},
"devDependencies": {
"autoprefixer": "^10.4.7",
"eslint": "7.32.0",
"eslint-config-next": "12.2.0",
"postcss": "^8.4.14",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^28.0.0",
"stylelint-csstree-validator": "^2.0.0",
"stylelint-scss": "^4.3.0",
"tailwindcss": "^3.1.4"
}
}