-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
99 lines (99 loc) · 3.34 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
{
"name": "@generative-fm/play",
"version": "0.14.0",
"description": "Player interface for Generative.fm",
"main": "index.js",
"dependencies": {
"@alexbainter/indexed-db": "^0.1.1",
"@auth0/auth0-react": "^1.2.0",
"@generative-music/pieces-alex-bainter": "^5.2.2",
"@generative-music/samples-alex-bainter": "^2.5.0",
"@generative-music/web-library": "^0.2.2",
"@generative-music/web-provider": "^3.0.0",
"@generative.fm/stats": "^1.0.2",
"@generative.fm/user": "^1.1.2",
"@generative.fm/web-ui": "^0.5.1",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@sentry/react": "^6.2.0",
"@sentry/tracing": "^6.2.0",
"classnames": "^2.2.6",
"mersenne-twister": "^1.1.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.2",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"redux": "^4.0.5",
"tone": "^14.7.58"
},
"devDependencies": {
"@alexbainter/eslint-config": "^0.1.2",
"@alexbainter/s3-sync": "^0.3.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@sentry/webpack-plugin": "^1.14.0",
"babel-loader": "^8.1.0",
"chai": "^4.3.0",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.8.1",
"css-loader": "^5.0.0",
"cypress": "^6.5.0",
"dotenv": "^8.2.0",
"eslint": "^7.15.0",
"eslint-plugin-cypress": "^2.11.2",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "^5.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.0.0",
"image-webpack-loader": "^8.1.0",
"karma": "^6.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.0",
"mini-css-extract-plugin": "^1.3.5",
"mocha": "^10.2.0",
"node-fetch": "^2.6.1",
"null-loader": "^4.0.1",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"regenerator-runtime": "^0.13.7",
"sass": "^1.34.1",
"sass-loader": "^10.0.5",
"sinon": "^9.2.4",
"style-loader": "^2.0.0",
"webpack": "^5.21.1",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2"
},
"scripts": {
"test": "karma start --single-run",
"test:watch": "karma start",
"cypress:open": "node scripts/open-cypress.js",
"cypress:run": "node scripts/run-cypress.js",
"lint": "eslint src --ext \".js,.jsx\"",
"start": "webpack serve -c ./webpack/webpack.dev.config.js",
"start:production": "webpack serve -c ./webpack/webpack.production.config.js",
"build": "webpack -c ./webpack/webpack.dev.config.js",
"build:production": "webpack -c ./webpack/webpack.production.config.js",
"build:profile": "webpack -c ./webpack/webpack.profile.config.js",
"deploy": "node -r dotenv/config node_modules/.bin/s3-sync deploy --mutables index.html sw.js",
"preversion": "npm run lint",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/generative-fm/play.git"
},
"author": "Alex Bainter <[email protected]> (https://alexbainter.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/generative-fm/play/issues"
},
"homepage": "https://github.com/generative-fm/play#readme"
}