-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
30 lines (30 loc) · 941 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
{
"name": "translation-telephone",
"repository": "https://github.com/pamelafox/translation-telephone",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/eslint-parser": "^7.17.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"eslint": "^8.15.0",
"lit-analyzer": "^1.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"rollup": "^2.36.2",
"rollup-plugin-terser": "^7.0.2",
"serve": "^11.3.2"
},
"dependencies": {
"lit": "^2.2.4"
},
"scripts": {
"lint": "npm run lint:lit-analyzer && npm run lint:eslint",
"lint:eslint": "eslint 'src/static/js/*.js'",
"lint:lit-analyzer": "lit-analyzer src/static/js/*-element.js",
"format": "prettier \"**/*.{js,json}\" --ignore-path ./.eslintignore --write",
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel start watch",
"start": "flask --debug run"
}
}