-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 849 Bytes
/
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
{
"private": true,
"name": "estimate",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "preact build",
"serve": "sirv build --port 8080 --cors --single",
"dev": "preact watch",
"lint": "eslint src",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css}\""
},
"eslintConfig": {
"extends": "preact"
},
"eslintIgnore": [
"build/*"
],
"devDependencies": {
"@tailwindcss/postcss7-compat": "^2.0.3",
"autoprefixer": "^9.8.6",
"eslint": "^7.17.0",
"eslint-config-preact": "^1.1.3",
"postcss": "^7.0.35",
"preact-cli": "^3.0.0",
"prettier": "^2.2.1",
"sirv-cli": "^1.0.3",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.3"
},
"dependencies": {
"mathjs": "^9.2.0",
"preact": "^10.1.0",
"preact-render-to-string": "^5.1.2"
}
}