forked from dkantz/nodejs-tutorialspoint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 917 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 917 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
30
31
32
33
34
35
{
"name": "nodejs-tutorialspoint",
"version": "1.0.0",
"description": "learning node js through tutorialspoint",
"dependencies": {
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"express": "^4.19.1",
"multer": "^1.4.4-lts"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "cd src && node server.js",
"start:production": "cd dist && node server.js",
"build": "rm -rf dist && mkdir -p dist && cp -r src/public dist/ && ls -hal && node build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/morisasy"
},
"keywords": [
"nodejs",
"express",
"javascript",
"web",
"development"
],
"author": "Medi Risasi",
"license": "ISC",
"devDependencies": {
"@node-minify/core": "^8.0.6",
"@node-minify/google-closure-compiler": "^8.0.6",
"@node-minify/uglify-js": "^8.0.6"
}
}