-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.55 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.55 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
{
"name": "rhythmcreator",
"version": "1.0.0",
"description": "An Open-Source tool for creating rhythms.",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development",
"build": "webpack",
"build:dev": "webpack-dev-server --contentBase=build/",
"server": "webpack-dev-server --hot --mode development --open --watch",
"postinstall": "npm run build",
"heroku-init": "http-server ./build -p ${PORT:=5000} -c-1 -e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielfranze/RhythmCreator.git"
},
"author": "Daniel Franze",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielfranze/RhythmCreator/issues"
},
"homepage": "https://github.com/danielfranze/RhythmCreator#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.0",
"file-loader": "^1.1.11",
"http-server": "^0.11.1",
"node-sass": "^4.9.2",
"path": "^0.12.7",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-semantic-ui-range": "^0.6.1",
"sass-loader": "^7.0.3",
"semantic-ui-css": "^2.3.3",
"semantic-ui-react": "^0.82.0",
"style-loader": "^0.21.0",
"tone": "^0.12.80",
"url-loader": "^1.0.1",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {}
}