forked from Qiskit/platypus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 4.76 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@qiskit/platypus",
"version": "0.1.1",
"description": "Project Platypus",
"repository": "https://github.com/Qiskit/platypus",
"license": "Apache-2.0",
"main": "server/app.ts",
"scripts": {
"clean:studio": "rimraf node_modules/@mathigon/studio/public",
"clean:public": "rimraf public",
"clean:work": "rimraf working",
"clean": "npm-run-all --parallel clean:studio clean:public clean:work",
"build:vue": "cross-env VUE_CLI_SERVICE_CONFIG_PATH=./frontend/vue/vue.config.js vue-cli-service build --target lib --name textbooklib --dest public/lib frontend/vue/main.ts",
"build:nb": "ts-node -s converter/converter.ts",
"build:studio": "mgon-build --assets --minify --search",
"build": "npm-run-all build:nb build:vue build:studio",
"watch:vue": "cross-env VUE_CLI_SERVICE_CONFIG_PATH=./frontend/vue/vue.config.js vue-cli-service build --no-clean --watch --target lib --name textbooklib --dest public/lib frontend/vue/main.ts",
"watch:studio": "mgon-build --assets --watch",
"watch": "npm-run-all --parallel watch:vue watch:studio",
"start": "ts-node --transpile-only -I public -P server/tsconfig.json server/app.ts",
"start-dev": "nodemon --watch 'server/**/*.ts' --exec 'ts-node -I public -P server/tsconfig.json server/app.ts'",
"dev": "npm-run-all --parallel watch start-dev",
"thumbnails": "mgon-build --thumbnails",
"screenshots": "mgon-screenshots --output screenshots",
"patch": "patch-package",
"postbuild:studio": "ts-node -s converter/postbuild.ts",
"postinstall": "patch-package",
"prepare": "npx simple-git-hooks",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test": "start-server-and-test start :8080/health cy:run",
"test:debug": "start-server-and-test start :8080/health cy:open",
"test:nb:meta": "python3 ./scripts/content_checks/goals.py && python3 ./scripts/content_checks/nb_metadata.py && python3 ./scripts/content_checks/nb_svg.py",
"test:nb:pylint": "./scripts/content_checks/nb_pylint.sh",
"test:nb:fix": "python3 ./scripts/content_checks/nb_metadata.py --fix && python3 ./scripts/content_checks/nb_svg.py --fix",
"test:nb": "npm run test:nb:pylint && npm run test:nb:meta",
"setup:secrets": "mgon-secrets"
},
"nano-staged": {
"*.{ts,tsx}": "eslint",
"*.ipynb": [
"python3 ./scripts/content_checks/nb_metadata.py",
"python3 ./scripts/content_checks/nb_svg.py"
]
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
},
"engines": {
"node": ">=14 <17"
},
"dependencies": {
"@carbon/colors": "^10.36.0",
"@carbon/icons-vue": "^10.46.0",
"@carbon/themes": "^10.50.0",
"@carbon/vue": "^2.40.0",
"@github/clipboard-copy-element": "^1.1.2",
"@ibm/plex": "^6.0.0",
"@jupyter-widgets/html-manager": "^0.20.1",
"@jupyter-widgets/jupyterlab-manager": "^3.0.1",
"@jupyterlab/codemirror": "^3.2.9",
"@jupyterlab/mathjax2": "^3.2.9",
"@jupyterlab/outputarea": "^3.2.8",
"@jupyterlab/rendermime": "^3.2.8",
"@jupyterlab/services": "^6.2.8",
"@lumino/widgets": "^1.31.1",
"@mathigon/boost": "^1.0.14",
"@mathigon/euclid": "^1.0.9",
"@mathigon/studio": "0.1.16",
"@qiskit-community/qiskit-vue": "^3.4.0",
"@webcomponents/webcomponentsjs": "^2.6.0",
"carbon-components": "~10.51.0",
"carbon-web-components": "^1.21.0",
"class-validator": "^0.13.2",
"lit-element": "^2.5.1",
"lodash": "^4.17.21",
"markdown-it": "^12.2.0",
"mongodb": "4.3.1",
"nanoid": "^3.3.3",
"patch-package": "^6.4.7",
"ts-node": "9.1.1",
"typescript": "4.5.5",
"vue": "~3.1.5",
"vue-class-component": "^8.0.0-rc",
"vue-router": "^4.0.12",
"vuedraggable": "^4.1.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^8.0.0",
"@types/bcryptjs": "2.4.2",
"@types/express-flash": "0.0.2",
"@types/fs-extra": "^9.0.13",
"@types/jsdom": "^16.2.14",
"@types/lodash": "^4.14.180",
"@types/markdown-it": "^12.2.1",
"@types/node-fetch": "^2.6.1",
"@types/pug": "2.0.6",
"@types/validator": "13.6.6",
"@vue/cli-plugin-typescript": "4.5.13",
"@vue/cli-service": "4.5.13",
"@vue/compiler-sfc": "~3.1.5",
"axe-core": "^4.4.1",
"cross-env": "^7.0.3",
"cypress": "^9.5.0",
"cypress-axe": "^0.14.0",
"cypress-wait-until": "^1.7.2",
"eslint": "^8.11.0",
"fs-extra": "^10.0.0",
"js-yaml": "^4.1.0",
"jsdom": "^19.0.0",
"nano-staged": "^0.8.0",
"node-sass": "^7.0.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sass-loader": "^10.2.1",
"sass-mq": "^6.0.0",
"simple-git-hooks": "^2.7.0",
"start-server-and-test": "^1.14.0",
"tslib": "^2.3.1",
"vue-demi": "^0.12.1"
}
}