forked from Qiskit/qiskit.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.59 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "qiskit.org",
"version": "0.1.0",
"license": "Apache-2.0",
"repository": "Qiskit/qiskit.org",
"scripts": {
"start": "polymer serve",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 0",
"build": "polymer build --auto-base-path && gulp setup:prpl-server",
"serve": "prpl-server --root server/build/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{js,json,html,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@kuscamara/code-sample": "IBMResearch/code-sample#lit-element-2.0",
"@polymer/app-layout": "^3.0.0",
"@polymer/polymer": "^3.1.0",
"@vaadin/router": "^1.2.0",
"@vaadin/vaadin-button": "^2.1.0",
"@webcomponents/webcomponentsjs": "^2.2.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"i18next": "^12.1.0",
"i18next-browser-languagedetector": "^2.2.0",
"i18next-xhr-backend": "^1.5.0",
"lit-element": "^2.0.0",
"pwa-helpers": "0.9.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"babel-eslint": "^10.0.0",
"del": "^3.0.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"gulp": "^4.0.0",
"gulp-inject-string": "^1.1.0",
"husky": "^1.3.0",
"lint-staged": "^8.1.0",
"polymer-cli": "^1.9.0",
"prettier": "1.16.4",
"prpl-server": "^1.4.0"
},
"engines": {
"node": ">=10.0.0"
},
"private": true
}