-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 991 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
39
40
41
{
"//1": "describes your app and its dependencies",
"//2": "https://docs.npmjs.com/files/package.json",
"//3": "updating this file will download and update your packages",
"name": "w3d-sprint0",
"version": "0.0.1",
"description": "A simple Node app built on Express, instantly up and running.",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"cors": "^2.8.4",
"express": "^4.16.3"
},
"devDependencies": {
"browser-sync": "^2.24.5",
"del": "^3.0.0",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^5.0.0",
"gulp-if": "^2.0.2",
"gulp-newer": "^1.4.0",
"gulp-notify": "^3.2.0",
"gulp-rigger": "^0.5.8",
"gulp-sourcemaps": "^2.6.4",
"gulp-watch": "^5.0.0",
"stream-combiner2": "^1.1.1"
},
"engines": {
"node": "8.x"
},
"repository": {
"url": "https://glitch.com/edit/#!/hello-express"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
]
}