-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
62 lines (62 loc) · 1.82 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
{
"name": "musyn",
"version": "1.0.0",
"description": "Collaborative music notation",
"main": "index.js",
"scripts": {
"server:dev": "nodemon server",
"client:dev": "webpack --config webpack/webpack.dev.js --watch",
"dev": "concurrently \"npm:server:dev\" \"npm:client:dev\"",
"start": "node server",
"build": "webpack --config webpack/webpack.prod.js"
},
"author": "Daniel Rowe",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"axios": "^0.20.0",
"babel-loader": "^8.0.6",
"body-parser": "^1.19.0",
"brotli-webpack-plugin": "^1.1.0",
"compression": "^1.7.4",
"compression-webpack-plugin": "^4.0.0",
"cookie-session": "^1.4.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-static-gzip": "^2.0.7",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"mini-css-extract-plugin": "^0.9.0",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"pg": "^7.18.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-router-dom": "^5.2.0",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"styled-components": "^5.0.1",
"tone": "^13.8.25",
"vexflow": "^3.0.9",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"bulma": "^0.8.2",
"concurrently": "^5.1.0",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"node-sass": "^4.14.1",
"sass-loader": "^9.0.0",
"style-loader": "^1.2.1"
}
}