forked from Cal-CS-61A-Staff/faded-parsons
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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": "faded-parsons-static",
"repository": "https://github.com/pamelafox/faded-parsons-static",
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/eslint-parser": "^7.17.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"eslint": "^8.15.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"lit-analyzer": "^1.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"rollup": "^2.36.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"jquery": "^3.6.0",
"jquery-ui": "^1.13.2",
"js-yaml": "^4.1.0",
"lit": "^2.2.4"
},
"scripts": {
"lint": "npm run lint:lit-analyzer && npm run lint:eslint",
"lint:eslint": "eslint 'js/*.js' 'js-parsons/*.js'",
"lint:lit-analyzer": "lit-analyzer 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": "python3 -m http.server",
"prepare": "husky install"
},
"lint-staged": {
"js/*-element.js": "lit-analyzer",
"*.js": "eslint --cache --fix",
"*.--write": "prettier \"**/*.{js,json}\" --ignore-path ./.eslintignore --write"
}
}