-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
94 lines (94 loc) · 2.78 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
{
"name": "shape-your-music",
"version": "0.1.0",
"license": "MIT",
"description": "Make music by drawing shapes",
"author": "Elias Jarzombek",
"keywords": [
"music",
"shapes",
"polygons",
"web audio",
"geometry"
],
"private": false,
"dependencies": {
"@ant-design/icons": "^4.3.0",
"@apollo/react-hooks": "^3.1.3",
"@craco/craco": "^5.4.0",
"@sentry/browser": "^5.0.8",
"@sentry/node": "^5.12.4",
"antd": "^4.8.4",
"apollo-boost": "^0.4.7",
"apollo-server-lambda": "^2.9.16",
"bufferutil": "^4.0.1",
"chalk": "^2.4.2",
"classnames": "^2.2.5",
"color": "^2.0.1",
"craco-antd": "^1.19.0",
"date-fns": "^2.0.1",
"faunadb": "2.6.1",
"file-saver": "2.0.0",
"graphql": "^14.5.8",
"graphql-request": "^1.8.2",
"http-proxy-middleware": "^0.20.0",
"inline-worker": "1.1.0",
"jszip": "3.7.0",
"konva": "^6.0.0",
"lodash": "^4.17.21",
"midi-writer-js": "1.5.2",
"netlify-identity-widget": "^1.5.5",
"prop-types": "^15.6.0",
"radium": "^0.24.0",
"rc-slider": "^8.6.1",
"react": "^16.13.1",
"react-color": "^2.14.0",
"react-dom": "^16.13.1",
"react-draggable": "^3.0.3",
"react-full-screen": "0.0.2",
"react-fullscreenable": "^2.5.0",
"react-hotkeys": "^2.0.0",
"react-konva": "^16.13.0-3",
"react-portal": "^3.2.0",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-scripts": "^3.1.1",
"react-select": "^3.0.8",
"teoria": "^2.5.0",
"tone": "13.8.25",
"utf-8-validate": "^5.0.2"
},
"scripts": {
"checkForFaunaKey": "node ./scripts/check-for-fauna-key.js",
"start": "npm-run-all --parallel start:app start:server",
"start:app": "craco start",
"upload-schema": "yarn checkForFaunaKey && curl -u $FAUNADB_SERVER_SECRET: https://graphql.fauna.com/import --data-binary \"@schema.gql\"",
"start:server": "yarn upload-schema && netlify-lambda serve functions -c ./webpack.config.js",
"start:devserver": "NODE_ENV=development yarn start:server",
"build": "CI=false npm-run-all --parallel build:** && npm run-script append-sw",
"build:app": "craco build",
"build:functions": "netlify-lambda build functions -c ./webpack.config.js",
"append-sw": "cat src/sw-epilog.js >> build/service-worker.js",
"test": "craco test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-prettier": "^2.6.2",
"netlify-lambda": "^1.4.7",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}