forked from yashton/terpstrakeyboard
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.37 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
{
"private": true,
"name": "terpstrakeyboard",
"repository": "[email protected]:wcgbg/terpstrakeyboard.git",
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"development": "webpack --mode development",
"test": "jest"
},
"dependencies": {
"axios": "0.28.0",
"normalize.css": "^8.0.1",
"preact": "^10.0.0",
"react-scripts": "^5.0.1",
"regenerator-runtime": "^0.13.3",
"webmidi": "^3.0.22"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.6.0",
"@svgr/webpack": "^4.1.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-preact-pure": "^2.1.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"moxios": "^0.4.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prop-types": "^15.7.2",
"raw-loader": "^3.1.0",
"terser-webpack-plugin": "^2.1.0",
"url-loader": "^2.1.0",
"web-audio-test-api": "^0.5.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0",
"webpack-manifest-plugin": "^2.0.4",
"workbox-webpack-plugin": "^4.3.1"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "> 1% and last 2 versions and not dead"
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties",
[
"transform-react-remove-prop-types",
{
"mode": "remove",
"removeImport": "true",
"ignoreFilenames": [
"node_modules"
]
}
],
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "h",
"pragmaFrag": "Fragment"
}
]
]
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|scl)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"setupFilesAfterEnv": [
"<rootDir>/enzyme.config.js"
]
}
}