-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.98 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
{
"name": "wejay",
"version": "0.0.1",
"description": "social dj web app",
"main": "index.js",
"scripts": {
"build-css": "node-sass app/assets/main/ -o public/stylesheets",
"test": "check-node-version --node '>= 6.7.0' && bin/setup && mocha --compilers js:babel-register --require ignore-styles tests/**/*.spec.jsx tests/**/*.spec.js",
"test-watch": "check-node-version --node '>= 6.7.0' && bin/setup && mocha --compilers js:babel-register --watch --require ignore-styles tests/**/*.spec.jsx tests/**/*.spec.js",
"build": "check-node-version --node '>= 6.7.0' && bin/setup && webpack",
"build-watch": "check-node-version --node '>= 6.7.0' && bin/setup && webpack -w",
"start": "check-node-version --node '>= 6.7.0' && bin/setup && webpack && node-sass app/assets/main/ -o public/stylesheets && nodemon server/start.js",
"start-dev": "bin/setup && nodemon server/start.js",
"test-server": "node tests/firebase/firebaseTestServer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christophermanahan/wejay.git"
},
"keywords": [
"react",
"redux",
"firebase",
"soundcloud"
],
"engines": {
"node": "6.7.0"
},
"author": "weJay team",
"license": "ISC",
"bugs": {
"url": "https://github.com/christophermanahan/wejay/issues"
},
"homepage": "https://github.com/christophermanahan/wejay#readme",
"dependencies": {
"axios": "^0.15.2",
"babel": "^6.5.2",
"babel-core": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"check-node-version": "^1.1.2",
"classnames": "^2.2.5",
"css-loader": "^0.26.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"firebase": "^3.6.1",
"firebase-admin": "^4.0.2",
"flexboxgrid": "^6.3.1",
"human-readable-ids": "^1.0.1",
"material-ui": "^0.16.4",
"node-sass": "^3.13.0",
"node-soundcloud": "0.0.6",
"nodemon": "^1.11.0",
"postcss-loader": "^1.1.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-flexbox-grid": "^0.10.2",
"react-flip-move": "^2.7.1",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-soundplayer": "^0.3.6",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-localstorage": "^0.4.1",
"redux-logger": "^2.7.0",
"redux-thunk": "^2.1.0",
"sass-loader": "^4.0.2",
"soundcloud-audio": "^1.0.4",
"style-loader": "^0.13.1",
"volleyball": "^1.4.1",
"webpack": "^1.13.3"
},
"devDependencies": {
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.2",
"enzyme": "^2.5.1",
"firebase-server": "^0.7.1",
"ignore-styles": "^5.0.1",
"mocha": "^3.1.2",
"npm": "^4.0.2",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"supertest": "^2.0.1",
"supertest-as-promised": "^4.0.1"
}
}