-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 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
{
"name": "react-mixer",
"description": "audio mixer build on React",
"version": "0.0.1",
"devDependencies": {
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-rewire": "^1.1.0",
"chai": "^4.1.0",
"enzyme": "^2.9.1",
"eslint": "^4.5.0",
"eslint-plugin-react": "^7.3.0",
"http-server": "^0.10.0",
"jsdom": "^11.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.4.2",
"proxyquire": "^1.8.0",
"react-test-renderer": "^15.6.1",
"redux-devtools": "^3.4.0",
"webpack": ">= 3.0.0",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"axios": "^0.16.2",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"classnames": "^2.2.5",
"deepmerge": "^1.5.1",
"dotenv-webpack": "^1.5.4",
"howler": "^2.0.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-paginate": "^4.4.3",
"react-redux": "^5.0.5",
"sinon": "^2.4.1",
"sinon-chai": "^2.12.0",
"webpack-dev-server": "^2.5.1"
},
"scripts": {
"start": "http-server ./src/client -p ${PORT:-8080}",
"watch": "webpack -d --watch",
"build": "NODE_ENV=production webpack -p",
"serve": "webpack-dev-server",
"test": "mocha",
"test:watch": "mocha -w",
"lint": "eslint --ext js,jsx webpack.config.js config/ src/client/app test/",
"lint:fix": "yarn lint -- --fix"
}
}