-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "sequencer",
"version": "1.0.0",
"description": "Simple JS step sequencer",
"main": "webpack.config.js",
"scripts": {
"dev": "webpack-dev-server",
"build": "NODE_ENV=production webpack -p",
"prebuild": "rimraf dist",
"deploy": "surge dist https://step-sequencer.surge.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/afuh/sequencer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/afuh/sequencer/issues"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"autoprefixer": "^9.5.1",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.5.3",
"normalize.css": "^8.0.1",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.4",
"webpack": "^4.10.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.1.3"
},
"dependencies": {
"axios": "^0.16.2",
"jquery": "^3.2.1"
}
}