forked from jocelyn-stericker/hacklily
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.44 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.44 KB
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
{
"name": "hacklily",
"version": "0.1.0",
"private": true,
"license": "GPLv3",
"homepage": "https://www.hacklily.org",
"prettier": {
"trailingComma": "all"
},
"dependencies": {
"@blueprintjs/core": "3.24.0",
"aphrodite": "2.4.0",
"dompurify": "2.0.8",
"hackmidi": "0.0.3",
"lodash": "4.17.15",
"makelily": "github:hacklily/makelily#191885a5f4e2e6a5e51273a8b5db49583ba8754d",
"monaco-editor": "0.15.6",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-monaco-editor": "0.34.0",
"react-router-dom": "5.1.2"
},
"devDependencies": {
"@babel/core": "7.8.6",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/preset-env": "7.8.6",
"@babel/preset-react": "7.8.3",
"@babel/preset-typescript": "7.8.3",
"@babel/runtime": "7.8.4",
"@types/d3-dispatch": "1.0.7",
"@types/d3-drag": "1.2.3",
"@types/d3-timer": "1.0.9",
"@types/dompurify": "0.0.32",
"@types/invariant": "2.2.31",
"@types/jest": "25.1.1",
"@types/lodash": "4.14.149",
"@types/node": "13.7.7",
"@types/opentype.js": "0.7.2",
"@types/react": "16.9.23",
"@types/react-dom": "16.9.5",
"@typescript-eslint/eslint-plugin": "2.22.0",
"@typescript-eslint/parser": "2.22.0",
"babel-loader": "8.0.6",
"copy-webpack-plugin": "5.1.1",
"css-loader": "3.4.2",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.3",
"eslint-plugin-react-hooks": "2.5.0",
"file-loader": "3.0.1",
"mini-css-extract-plugin": "0.9.0",
"monaco-editor-webpack-plugin": "1.7.0",
"prettier": "1.19.1",
"rimraf": "3.0.2",
"style-loader": "1.1.3",
"typescript": "3.8.3",
"webpack": "4.42.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3"
},
"scripts": {
"test": "eslint ./src --ext tsx,ts,js,jsx && tsc --noEmit",
"build": "rimraf dist pkg && env REACT_APP_GITHUB_CLIENT_ID=10a6656f66c8392b4d35 REACT_APP_BACKEND_WS_URL=wss://hacklily-render.nettek.ca/rpc webpack && npm test",
"start": "rimraf dist pkg && env REACT_APP_GITHUB_CLIENT_ID=5a1e4e51dea710198f18 REACT_APP_BACKEND_WS_URL=ws://localhost:2000 webpack-dev-server --open -d",
"start-share": "rimraf dist pkg && env REACT_APP_GITHUB_CLIENT_ID=5a1e4e51dea710198f18 REACT_APP_BACKEND_WS_URL=ws://localhost:2000 webpack-dev-server --host 0.0.0.0 -d"
}
}