-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
49
50
51
{
"name": "utilities_app",
"private": true,
"description": "A web app dedicated to several valuable tools I've developed for me, and perhaps even you.",
"version": "1.0.0",
"type": "module",
"keywords": [
"utilities",
"utilities_app",
"utility",
"spa",
"single-page-app",
"conversion",
"routing",
"calculator-javascript",
"javascript",
"javascript_app",
"css",
"html",
"vite",
"vitejs"
],
"scripts": {
"dev": "vite --host --open",
"lint": "eslint --ext .js ./",
"lint:fix": "eslint --fix --ext .js ./",
"format": "prettier --write \"./**/*.{js,jsx,json,css}\"",
"build": "vite build",
"preview": "vite preview --host --open",
"buildpreview": "vite build && vite preview --host --open"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.5",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"postcss": "^8.4.41",
"postcss-nesting": "^13.0.0",
"prettier": "^3.3.3",
"vite": "5.4.2",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-pwa": "^0.20.1"
},
"dependencies": {
"mathjs": "^13.1.1",
"the-new-css-reset": "^1.11.3"
}
}