-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.29 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"build-secure-components": "./tools/build-secure-components.sh",
"build-secure-components:watch": "./tools/build-secure-components.sh -watch",
"build": "yarn vue-cli-service build",
"build:watch": "yarn build --watch",
"build-all": "npm-run-all --parallel build build-secure-components",
"build-all:watch": "npm-run-all --parallel build:watch build-secure-components build-secure-components:watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o .storybook/dist",
"test-storyshots": "npm-run-all build-storybook test-storyshots:run",
"test-storyshots:update": "npm-run-all build-storybook test-storyshots:run-update",
"test-storyshots:run": "jest storyshots.runner.js --testRegex='.'",
"test-storyshots:run-update": "jest storyshots.runner.js --testRegex='.' -u"
},
"dependencies": {
"core-js": "^3.6.5",
"howler": "^2.2.3",
"jest-vue-preprocessor": "^1.7.1",
"lodash": "^4.17.21",
"random-seed": "^0.3.0",
"rxjs": "^6.6.3",
"typescript": "^4.7.3",
"vue": "^2.7.14",
"vue-observe-visibility": "^1.0.0",
"vue-router": "^3.2.0",
"vue-rx": "^6.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/addon-storyshots": "^6.5.14",
"@storybook/addon-storyshots-puppeteer": "^6.5.14",
"@storybook/preset-scss": "^1.0.3",
"@storybook/vue": "6.5.14",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-router": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"cytoscape-cose-bilkent": "^4.1.0",
"cytoscape-dagre": "^2.3.2",
"cytoscape-klay": "^3.1.4",
"git-describe": "^4.0.4",
"jest-environment-jsdom": "^28.1.1",
"npm-run-all": "^4.1.5",
"puppeteer": "^7.0.1",
"sass": "^1.26.5",
"sass-loader": "^10.1.1",
"storybook": "^6.5.14",
"style-loader": "^2.0.0",
"vue-cytoscape": "^1.0.8",
"vue-loader": "^17.4.2",
"vue-template-compiler": "2.7.16"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"engines": {
"node": ">=22.0.0"
}
}