-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.79 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
{
"name": "midi-jam-helper",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"parcel": "./node_modules/.bin/parcel src/index.html",
"ws-server": "node ws-server.js",
"build": "./node_modules/.bin/parcel build src/index.html",
"qa-build": "NODE_ENV=qa yarn build",
"mocha": "./node_modules/.bin/mocha",
"test": "yarn test-match spec/src/**/*.test.ts*",
"test-match": "yarn ts-mocha -p tsconfig.json --require spec/index.ts --exit",
"check-ts": "./node_modules/.bin/tsc --outDir /dev/null --noEmit -p tsconfig.json --skipLibCheck"
},
"repository": "git@github.com:mickmister/midi-jam-helper.git",
"author": "mickmister <mjkochell@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/loglevel": "^1.5.3",
"@types/rx": "^4.1.1",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.3",
"classnames": "^2.2.6",
"cors": "^2.8.4",
"easy-peasy": "^1.14.0",
"express": "^4.16.4",
"loglevel": "^1.6.1",
"midi-synth": "^0.0.4",
"note-to-frequency": "^1.4.1",
"parcel": "^1.8.1",
"react": "^16.8.2",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.8.2",
"react-piano": "^3.1.2",
"react-router": "^4.3.1",
"rx": "^4.1.0",
"rxjs": "^6.2.0",
"rxjs-web-midi": "https://github.com/achydenius/rxjs-web-midi",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"socketio": "^1.0.0",
"soundfont-player": "^0.11.0",
"subpoly": "^0.1.0",
"typescript": "3.5.2",
"use-react-router": "^1.0.3",
"webmidi": "^2.0.5"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/register": "^7.0.0",
"@types/chai": "^4.1.3",
"@types/chai-spies": "^1.0.0",
"@types/classnames": "^2.2.7",
"@types/enzyme": "^3.1.14",
"@types/mocha": "^5.2.1",
"@types/react": "^16.8.2",
"@types/react-bootstrap": "^0.32.15",
"@types/react-dom": "^16.8.0",
"@types/sinon": "^5.0.5",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"autoprefixer": "^9.5.1",
"chai": "^4.1.2",
"eslint": "^5.8.0",
"eslint-plugin-header": "^2.0.0",
"eslint-plugin-react-hooks": "^0.0.0",
"eslint-plugin-typescript": "^0.13.0",
"mocha": "^5.2.0",
"node-sass": "^4.9.4",
"nodemon": "^1.17.5",
"postcss-modules": "^1.4.1",
"prop-types": "^15.6.2",
"react-test-renderer": "^16.7.0-alpha.0",
"sass": "^1.17.3",
"sinon": "^7.1.1",
"sinon-chai": "^3.2.0",
"ts-mocha": "^2.0.0",
"ts-node": "^7.0.1",
"tsc-test": "^0.1.5",
"tslint": "^5.12.1",
"tslint-eslint-rules": "^5.4.0",
"typescript-eslint-parser": "^20.1.1"
}
}