This repository was archived by the owner on May 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.95 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.95 KB
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
{
"name": "pwt-extractor",
"version": "0.1.0",
"private": true,
"main": "server.js",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test": "NODE_ENV=test jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"decibels": "^2.0.0",
"dsp.js-browser": "^1.0.1",
"express": "^4.16.4",
"lodash": "^4.17.11",
"ndarray-normalize": "^1.0.0",
"ndarray-ops": "^1.2.2",
"ndarray-pack": "^1.2.1",
"ndarray-unpack": "^1.0.0",
"pngjs": "^3.4.0",
"socket.io-client": "^2.2.0",
"vue": "^2.6.6",
"vue-videobg": "^2.0.0",
"vuex": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@storybook/addon-actions": "^5.0.10",
"@storybook/addon-links": "^5.0.10",
"@storybook/addons": "^5.0.10",
"@storybook/vue": "^5.0.10",
"@vue/cli-plugin-babel": "^3.5.0",
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-service": "^3.5.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.5",
"babel-preset-vue": "^2.0.2",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"jest": "^24.5.0",
"standardized-audio-context-mock": "^6.2.23",
"vue-template-compiler": "^2.5.21"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js"
],
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}