-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "subtractor",
"version": "1.1.1",
"description": "A WebAudio API Synth",
"main": "index.js",
"scripts": {
"start": "WEBPACK_MODE=development webpack-dev-server",
"build": "WEBPACK_MODE=production webpack",
"test": "jest --coverage",
"lint": "eslint . -c .eslintrc.js",
"presets": "babel-node scripts/refresh-presets.js",
"postinstall": "ln -sfv $PWD/hooks/* $PWD/.git/hooks/ || exit 0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "7.6.0",
"@babel/core": "7.6.0",
"@babel/node": "7.6.1",
"@babel/preset-env": "7.6.0",
"@sentry/webpack-plugin": "^1.6.2",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"css-loader": "^3.2.0",
"eslint": "^6.4.0",
"eslint-plugin-vue": "^5.2.3",
"extract-css-chunks-webpack-plugin": "4.6.0",
"file-loader": "^4.2.0",
"html-webpack-harddisk-plugin": "1.0.1",
"html-webpack-plugin": "3.2.0",
"jest": "^24.7.1",
"lodash.merge": "^4.6.1",
"node-sass": "4.12.0",
"sass-loader": "^8.0.0",
"web-audio-test-api": "^0.5.2",
"webpack": "^4.40.2",
"webpack-cli": "3.3.9",
"webpack-dev-server": "^3.8.1"
},
"dependencies": {
"@sentry/browser": "^5.2.1",
"eventemitter3": "^4.0.0",
"vue": "2.6.10"
},
"jest": {
"clearMocks": true,
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/tests/__mocks__/css.js"
}
}
}