-
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.51 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.51 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": "limbo-daw",
"version": "0.0.1",
"description": "Web DAW",
"main": "src/index.tsx",
"scripts": {
"test": "TS_NODE_PROJECT=tsconfig.test.json mocha -r ts-node/register ./src/**/*.test.ts",
"dev": "TS_NODE_PROJECT=webpack/tsconfig.json CONFIG=development webpack-dev-server --hot --inline --watch-poll --colors --host 0.0.0.0 --port 1337 --config webpack/config.ts",
"build": "TS_NODE_PROJECT=webpack/tsconfig.json CONFIG=production MODE=patch webpack --config webpack/config.ts",
"build:minor": "TS_NODE_PROJECT=webpack/tsconfig.json CONFIG=production MODE=minor webpack --config webpack/config.ts",
"build:major": "TS_NODE_PROJECT=webpack/tsconfig.json CONFIG=production MODE=major webpack --config webpack/config.ts",
"deploy": "npm run build && shipit production deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/limbosounds/limbo-daw.git"
},
"author": "Limbo",
"license": "MIT",
"bugs": {
"url": "https://github.com/limbosounds/limbo-daw/issues"
},
"homepage": "https://github.com/limbosounds/limbo-daw#readme",
"dependencies": {
"mobx": "^6.3.2",
"mobx-react": "^7.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.1",
"uuid": "^3.4.0"
},
"devDependencies": {
"@theadmasters/version-manager": "^0.2.0",
"@types/mini-css-extract-plugin": "^0.9.1",
"@types/mocha": "^9.0.0",
"@types/node": "^14.11.2",
"@types/optimize-css-assets-webpack-plugin": "^5.0.1",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/script-ext-html-webpack-plugin": "^2.1.1",
"@types/terser-webpack-plugin": "^4.2.0",
"@types/uuid": "^8.3.1",
"@types/webpack": "^4.41.22",
"@types/webpack-dev-server": "^3.11.0",
"autoprefixer": "^10.0.1",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^4.3.0",
"html-loader": "^1.3.1",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^0.11.2",
"mocha": "^9.1.1",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^8.1.1",
"postcss-loader": "^4.0.2",
"sass-loader": "^10.0.2",
"script-ext-html-webpack-plugin": "^2.1.4",
"should": "^13.2.3",
"source-map-loader": "^1.1.0",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.2.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}