-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
{
"name": "react-jplayer-demo",
"version": "1.0.0",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --progress --inline --content-base public/",
"build": "rimraf dist && cross-env NODE_ENV=production webpack",
"lint": "eslint --fix --ext .jsx,.js ./src",
"deploy": "git push azure master"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"autoprefixer": "^6.7.3",
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.24.0",
"cross-env": "^3.2.4",
"css-loader": "^0.27.2",
"ejs": "^2.5.6",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-defaults": "^9.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.7.0",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"less": "^2.7.2",
"less-loader": "^3.0.0",
"optimize-css-assets-webpack-plugin": "^1.3.0",
"postcss-loader": "^1.2.1",
"pre-commit": "^1.2.2",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"redux": "^3.6.0",
"rimraf": "^2.6.1",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"dependencies": {
"bootstrap": "^3.3.7",
"font-awesome": "^4.7.0",
"react": "^15.4.1",
"react-dom": "^15.4.2",
"react-jplayer": "^4.0.0",
"react-json-pretty": "^1.3.1",
"react-redux": "^5.0.2",
"redux": "^3.6.0"
}
}