forked from tomma5o/domicilioBoilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 964 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
36
37
{
"private": true,
"name": "padernodugnanodomicilio",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "per-env",
"start:production": "npm run -s serve",
"start:development": "npm run -s dev",
"build": "preact build",
"serve": "preact build && sirv build --cors --single",
"dev": "preact watch",
"lint": "eslint src"
},
"eslintConfig": {
"extends": "preact",
"ignorePatterns": [
"build/"
]
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-preact": "^1.1.0",
"identity-obj-proxy": "^3.0.0",
"per-env": "^1.0.2",
"preact-cli": "^3.0.0-rc.6",
"preact-cli-plugin-env-vars": "^1.2.1",
"preact-render-spy": "^1.2.1",
"sirv-cli": "^0.4.5"
},
"dependencies": {
"preact": "^10.3.2",
"preact-render-to-string": "^5.1.4",
"preact-router": "^3.2.1",
"tailwindcss": "^1.2.0"
}
}