-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1016 Bytes
/
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
{
"name": "smart-task-manager",
"version": "1.0.0",
"description": "Smart task manager with supporting CRUD operations",
"main": "index.js",
"scripts": {
"build": "npm i && gulp",
"showcase": "npm i && gulp && node node_modules/.bin/http-server ./app/dist -o",
"dev": "npm i && gulp serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/V11/smart-task-manager.git"
},
"keywords": [
"task"
],
"author": "kurpav",
"license": "no license",
"bugs": {
"url": "https://github.com/V11/smart-task-manager/issues"
},
"homepage": "https://github.com/V11/smart-task-manager",
"devDependencies": {
"browser-sync": "^2.11.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-concat": "^2.6.0",
"gulp-processhtml": "^1.1.0",
"gulp-sass": "^2.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "1.4.2"
},
"dependencies": {
"http-server": "^0.9.0"
}
}