-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 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
{
"name": "snipsnip",
"version": "1.0.0",
"description": "Shorten songs by removing repeated parts. Sounds more natural without cuts!",
"main": "index.js",
"dependencies": {
"http-server": "^0.11.1",
"node-sass": "^4.9.2",
"node-sass-watcher": "^0.5.1",
"serverless-python-requirements": "^4.1.0",
"serverless-s3-sync": "^1.6.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^5.0.0",
"gulp-babel": "^7.0.1",
"gulp-concat": "^2.6.1",
"gulp-csso": "^3.0.1",
"gulp-htmlmin": "^4.0.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1"
},
"scripts": {
"serve": "http-server",
"dev": "node-sass-watcher src/style.scss -o src/style.css -c 'cat <input> | node_modules/node-sass/bin/node-sass > <output>'",
"build": "gulp",
"deploy": "gulp && serverless deploy",
"deploy-web": "gulp && serverless s3sync"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jaflo/snipsnip.git"
},
"author": "Florian (jaflo)",
"license": "MIT",
"homepage": "https://github.com/jaflo/snipsnip"
}