-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.24 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
{
"name": "lancie-frontend-preact",
"version": "0.0.1",
"description": "Lancie frontend build with Preact",
"repository": "[email protected]:AreaFiftyLAN/lancie-frontend-preact.git",
"author": "LanDev team",
"license": "GPL-3.0",
"private": true,
"sideEffects": [
"./src/index.tsx"
],
"browserslist": "> 0.25%, not dead",
"scripts": {
"start": "yarn watch",
"watch": "parcel ./src/index.html",
"build": "parcel build ./src/index.html",
"serve": "yarn build && http-server ./dist -p 1234",
"lint": "eslint --max-warnings 0 --ext .js,.jsx,.ts,.tsx ./src && stylelint './src/**/*.scss'"
},
"dependencies": {
"preact": "^10.4.8",
"teenyui": "^1.1.1"
},
"devDependencies": {
"@types/node": "^14.11.1",
"@types/parcel-env": "^0.0.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"autoprefixer": "^9.8.6",
"eslint": "^7.9.0",
"eslint-config-preact": "^1.1.1",
"eslint-config-prettier": "^6.11.0",
"http-server": "^0.12.3",
"parcel": "^1.12.4",
"postcss": "^8.2.1",
"postcss-modules": "^3.2.2",
"sass": "^1.26.11",
"stylelint": "^13.7.1",
"stylelint-config-sass-guidelines": "^7.1.0",
"typescript": "^4.1.3"
}
}