-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 2 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
{
"name": "fastify-lit-spa",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server": "NODE_ENV=production node -r dotenv/config app/server/index.js",
"server:dev": "NODE_ENV=production node -r dotenv/config --inspect-brk app/server/index.js",
"lint:back": "eslint --config configs/backend/.eslintrc.json --ext .js ./app/server --ignore-path .gitignore && prettier \"app/server/**/*.js\" --check --ignore-path .gitignore",
"lint:back:fix": "eslint --config configs/backend/.eslintrc.json --ignore-path .gitignore ./app/server --fix",
"lint:front": "eslint --config configs/frontend/.eslintrc.json --ext .js,.html ./app/website --ignore-path .gitignore && prettier \"app/website/**/*.js\" --check --ignore-path .gitignore",
"lint:front:fix": "eslint --config configs/frontend/.eslintrc.json --ignore-path .gitignore ./app/website --fix",
"lint": "lint:back && lint:front",
"lint:fix": "lint:back:fix && lint:front:fix",
"format": "eslint --ext .js,.html . --fix --ignore-path .gitignore && prettier \"app/**/*.js\" --write --ignore-path .gitignore",
"test": "web-test-runner --coverage",
"test:watch": "web-test-runner --watch",
"build": "rimraf dist && rollup -c rollup.config.js",
"start": "npm run build && npm run server",
"start:watch": "web-dev-server --root-dir app/website --app-index build/index.html --node-resolve --watch --open"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@open-wc/building-rollup": "^3.0.2",
"@open-wc/dev-server-hmr": "^0.1.4",
"@open-wc/eslint-config": "^4.3.0",
"@open-wc/testing": "^4.0.0",
"@web/test-runner": "^0.18.2",
"deepmerge": "^4.3.1",
"es-dev-server": "^1.55.1",
"eslint": "^7.32.0",
"eslint-config-loopback": "^13.1.0",
"eslint-config-prettier": "^7.2.0",
"rimraf": "^3.0.2",
"rollup": "^4.0.0"
},
"dependencies": {
"dotenv": "^9.0.2",
"fastify": "^3.29.5",
"fastify-static": "^4.7.0",
"lit": "^3.1.2"
}
}