-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 873 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 873 Bytes
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
{
"name": "statuspage-theme",
"private": true,
"version": "0.0.0",
"dependencies": {
"daisyui": "^2.15.1",
"postcss-cli": "^8.3.1",
"prettier": "^2.6.2",
"typescript": "^4.5.4",
"vite": "^2.9.9"
},
"scripts": {
"css:dev": "NODE_ENV=development postcss src/styles.css -o ./dist/tailwind.css -w",
"css:build": "NODE_ENV=production postcss src/styles.css -o ./dist/tailwind.css",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"postcss": "^8.4.14",
"tailwindcss": "^3.0.24"
}
}