-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "listapp",
"version": "1.0.0",
"description": "A simple list application in Angular and Node.js.",
"main": "./dist/Server.js",
"scripts": {
"build": "tsc --extendedDiagnostics",
"dev": "cross-env NODE_ENV=development ts-node ./lib/Server.ts",
"watch:dev": "cross-env NODE_ENV=development nodemon -e ts -w ./lib -x npm run dev",
"start": "npm run build && node ./dist/Server.js",
"test": "echo \"Error: no test specified\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/washingtonbr/listApp.git"
},
"keywords": [
"list",
"application",
"to",
"do",
"node.js",
"angular"
],
"author": "Washington Pires <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/washingtonbr/listApp/issues"
},
"homepage": "https://github.com/washingtonbr/listApp",
"dependencies": {
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/mongoose": "^5.2.4",
"@types/node": "^12.7.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"es6-promise": "^4.2.4",
"express": "^4.16.3",
"fs": "^0.0.1-security",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.2.7",
"typescript": "^3.0.3"
},
"devDependencies": {
"cross-env": "^5.2.0",
"nodemon": "^1.18.3",
"ts-node": "^7.0.1"
}
}