This repository has been archived by the owner on May 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
59 lines (59 loc) · 2.05 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
{
"name": "qiskit.org",
"private": true,
"description": "Qiskit is an open-source SDK for working with quantum computers at the level of pulses, circuits, and application modules.",
"repository": "Qiskit/qiskit.org",
"license": "Apache-2.0",
"engines": {
"node": "18"
},
"scripts": {
"build": "nuxt build",
"dev": "cross-env nuxt dev",
"format": "npm run format:eslint && npm run format:prettier && npm run format:stylelint",
"format:eslint": "npm run lint:eslint -- --fix",
"format:prettier": "prettier . --ignore-path .gitignore --write",
"format:stylelint": "npm run lint:stylelint -- --fix",
"generate": "nuxt generate",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint . --ext .ts,.js,.vue",
"lint:stylelint": "stylelint '**/*.{css,scss,vue}' --ignore-path .gitignore",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "vitest --coverage"
},
"devDependencies": {
"@carbon/icons-vue": "^10.79.1",
"@carbon/styles": "^1.35.0",
"@carbon/type": "^11.25.0",
"@carbon/web-components": "^1.30.0",
"@ibm/plex": "^6.3.0",
"@nuxt/content": "^2.10.0",
"@nuxt/image-edge": "^1.0.0-28101255.bece998",
"@nuxt/test-utils": "^3.11.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@qiskit/web-components": "^0.15.4",
"@types/lodash": "^4.14.202",
"@types/node": "^18.16.9",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitest/coverage-v8": "^1.2.0",
"airtable": "^0.12.1",
"axios": "^1.6.7",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.20.1",
"lodash": "^4.17.21",
"nuxt": "^3.6.5",
"nuxt-schema-org": "^2.2.0",
"prettier": "^3.1.1",
"sass": "^1.63.6",
"stylelint": "^15.10.1",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard-scss": "^10.0.0",
"vitest": "^1.1.1",
"yaml": "^2.3.1"
}
}