-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.12 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@mybook/audio-player-js",
"main": "dist/index.js",
"version": "0.2.16",
"repository": {
"type": "git",
"url": "git://github.com/MyBook/audioplayer"
},
"scripts": {
"dev": "BABEL_ENV=dev NODE_ENV=development nodemon --watch webpack --watch example --exec 'node example/app.js'",
"build": "rm -rf dist && BABEL_ENV=production NODE_ENV=production webpack --config=webpack/webpack.config.js && cp -f -v src/styles.css dist/style.css",
"devbuild": "yarn install --production=true",
"publish:patch": "npm version patch && git push && npm run build && npm publish"
},
"peerDependencies": {
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "5.2.1"
},
"devDependencies": {
"@hot-loader/react-dom": "^16.8.6",
"@loadable/component": "^5.10.2",
"@types/js-cookie": "^2.2.6",
"@types/uuid": "^8.3.0",
"axios-mock-adapter": "^1.16.0",
"babel-jest": "^24.8.0",
"babel-plugin-styled-components": "^1.10.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"express": "^4.17.1",
"helmet": "^3.18.0",
"jest": "^24.8.0",
"jest-mock-console": "^1.0.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.1",
"prettier": "^2.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "^5.0.1",
"styled-components": "5.2.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-manifest-plugin": "^2.0.4",
"webpack-notifier": "^1.7.0"
},
"dependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.5",
"@types/node": "^12.7.3",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"@types/react-redux": "^7.1.2",
"@types/react-router-dom": "^4.3.5",
"@types/redux-logger": "^3.0.8",
"@types/styled-components": "5.1.9",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"js-cookie": "^2.2.0",
"polished": "^3.4.0",
"react-hot-loader": "^4.9.0",
"react-perfect-scrollbar": "^1.5.3",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.1",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"typescript": "4.2.3",
"uuid": "^3.3.2",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2",
"webpack-merge": "^4.2.1"
},
"jest": {
"verbose": true,
"automock": false,
"setupFiles": [
"./tests/shim.js",
"./tests/setupJest.js"
],
"testRegex": "tests/.*test\\.js$",
"moduleDirectories": [
"node_modules",
"src"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|isvg|ttf|woff|woff2|mp4|webm|wav|m4a|aac|oga)$": "./tests/mocks/fileMock.js"
},
"moduleFileExtensions": [
"js",
"jsx"
]
}
}