-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.22 KB
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": "react-sound",
"version": "1.0.0",
"description": "SoundCloud jukebox",
"main": "index.js",
"engines": {
"node": "11.15.0"
},
"scripts": {
"start": "NODE_ENV=production node ./compiled/index.js",
"start:dev": "NODE_ENV=development babel-node ./server",
"dev": "nodemon",
"prod": "npm run build:dist; npm run build:node",
"build:dev:server": "NODE_ENV=development webpack --config ./webpack/config.babel.js --server",
"build:dev": "NODE_ENV=development webpack --config ./webpack/config.babel.js",
"build:dist": "NODE_ENV=production webpack --config ./webpack/config.babel.js",
"build:node": "NODE_ENV=production babel ./server -d ./compiled",
"clean": "rimraf ./public && rimraf ./compiled",
"lint": "eslint ./src/scripts --ext=js --ext=jsx",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --require ./test/helpers/test_helper.js \"test/**/*.@(js|jsx)\""
},
"repository": {
"type": "git",
"url": "https://github.com/nsocrates/react-sound.git"
},
"keywords": [
"react",
"soundcloud"
],
"author": "Socrates",
"license": "ISC",
"bugs": {
"url": "https://github.com/nsocrates/react-sound/issues"
},
"homepage": "https://github.com/nsocrates/react-sound",
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"copyfiles": "^1.0.0",
"css-loader": "^0.24.0",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-import-resolver-webpack": "^0.5.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.1.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"jsdom": "^9.4.2",
"json-loader": "^0.5.4",
"mocha": "^3.0.2",
"node-sass": "^3.13.1",
"nodemon": "^1.10.2",
"postcss": "^5.1.2",
"postcss-loader": "^0.11.0",
"react-transform-hmr": "^1.0.4",
"redux-logger": "^2.6.1",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"susy": "^2.2.12",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2"
},
"dependencies": {
"body-parser": "^1.15.2",
"classnames": "^2.2.5",
"cookie-parser": "^1.4.3",
"es6-promise": "^3.3.0",
"express": "^4.14.0",
"history": "^3.0.0",
"install": "^0.8.1",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "^2.1.2",
"lodash": "^4.15.0",
"method-override": "^2.3.6",
"morgan": "^1.7.0",
"normalizr": "^2.2.1",
"npm": "^3.10.7",
"pretty-error": "^2.0.0",
"query-string": "^4.2.3",
"react": "^15.3.1",
"react-addons-css-transition-group": "^15.3.1",
"react-dom": "^15.3.1",
"react-helmet": "^3.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.7.0",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
}
}