-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 859 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 859 Bytes
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
{
"name": "simplestickets",
"version": "1.0.0",
"description": "Stickets (Super-tickets!) app, a very simple n' cool app to help you keep your ideas ordered.",
"main": "js/index.js",
"scripts": {
"start": "http-server",
"sass": "sass scss/styles.scss css/styles.css --watch --style compressed",
"dev": "npm-run-all --parallel start sass"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreuscafe/stickets.git"
},
"author": "Andrés Tonello <andresnicolastonello@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/andreuscafe/stickets/issues"
},
"homepage": "https://github.com/andreuscafe/stickets#readme",
"dependencies": {
"firebase-tools": "^6.3.1",
"http-server": "^0.12.3",
"sass": "^1.26.5"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}