-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"private": true,
"name": "ioxcebu19",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "if-env NODE_ENV=production && npm run -s serve || npm run -s dev",
"build": "preact build --template src/template.html",
"serve": "preact build && preact serve",
"dev": "preact watch --template src/template.html",
"lint": "eslint src"
},
"eslintConfig": {
"extends": "eslint-config-synacor",
"rules": {
"no-unused-vars": "warn",
"react/sort-comp": "off",
"lines-around-comment": "off",
"react/prefer-stateless-function": "off"
}
},
"eslintIgnore": [
"build/*"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-synacor": "^1.1.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"if-env": "^1.0.0",
"lint-staged": "^13.0.1",
"preact-cli": "^2.0.0",
"prettier": "2.7.0"
},
"dependencies": {
"preact": "^8.2.1",
"preact-compat": "^3.17.0",
"preact-render-to-string": "^4.1.0",
"preact-router": "^2.5.5",
"preact-material-components": "^1.4.3"
}
}