-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.49 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.49 KB
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
{
"name": "themis",
"version": "0.1.0",
"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"
},
"browserslist": "defaults, not ie <= 11",
"dependencies": {
"@headlessui/react": "^1.7.2",
"@heroicons/react": "^1.0.6",
"autoprefixer": "^10.4.12",
"caniuse-lite": "^1.0.30001468",
"clsx": "^1.2.1",
"focus-visible": "^5.2.0",
"next": "13.0.2",
"next-themes": "^0.2.1",
"npm-run-all": "^4.1.5",
"postcss-focus-visible": "^6.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^28.0.0",
"stylelint-csstree-validator": "^2.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.3.0",
"tailwindcss": "^3.2.1"
},
"devDependencies": {
"eslint": "8.26.0",
"eslint-config-next": "13.0.2",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13"
}
}