-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
109 lines (109 loc) · 3.05 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
104
105
106
107
108
109
{
"name": "loopchat",
"version": "1.0.0",
"description": "collaborative music chat",
"scripts": {
"start": "node server.js",
"unitTests": "mocha-webpack test/unit --recursive",
"karmaTests": "./node_modules/karma/bin/karma start",
"lint": "eslint src",
"test": "npm run typeCheck && cross-env NODE_ENV=test npm run karmaTests",
"typeCheck": "flow"
},
"repository": {
"type": "git",
"url": "https://github.com/connorwalsh/loopchat-client.git"
},
"keywords": [
"music"
],
"author": "connor <c@polygon.pizza> (http://github.com/connorwalsh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/connorwalsh/loopchat-client/issues"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"homepage": "https://github.com/connorwalsh/loopchat-client",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.0.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-es2015": "^6.0.15",
"babel-preset-es2017": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"chai": "^3.5.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.1",
"css-loader": "^0.23.1",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.3",
"enzyme-redux": "^0.1.7",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.6.2",
"flow-bin": "^0.57.3",
"istanbul": "^0.4.5",
"json-loader": "^0.5.7",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.5",
"mocha": "^3.4.1",
"mocha-webpack": "^0.7.0",
"postcss-icss-values": "^2.0.1",
"postcss-loader": "^2.0.8",
"react-hot-loader": "^1.3.0",
"react-test-renderer": "^16.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-mock-store": "^1.2.3",
"redux-test-utils": "^0.1.3",
"sinon": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"d3": "^4.11.0",
"d3-drag": "^1.2.1",
"d3-selection": "^1.1.0",
"d3-timer": "^1.0.7",
"immutable": "^3.8.2",
"material-ui": "^0.19.4",
"moment": "^2.19.1",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.2",
"react-router": "^3.0.1",
"react-tap-event-plugin": "^3.0.2",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"socket.io-client": "^1.7.2",
"tonal": "^0.69.6",
"tone": "^0.10.0",
"uuid": "^3.0.1"
}
}