-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "my-products-sales-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"build": " babel ./ -d dist --ignore ./dist,./.gitignore,./node_modules,./.babelrc",
"start": "npm run build && nodemon dist/server.js",
"serve": "node dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Endowmissy/my-products-sales-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Endowmissy/my-products-sales-server/issues"
},
"homepage": "https://github.com/Endowmissy/my-products-sales-server#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/register": "^7.6.0",
"@babel/runtime": "^7.6.0",
"babel-polyfill": "^6.26.0",
"mocha": "^6.2.0",
"nodemon": "^1.19.2"
}
}