-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 886 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": "nodejschallenge",
"version": "1.0.0",
"description": "NodeJS Challenge",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"start:dev": "nodemon",
"build": "rimraf ./build && tsc && postbuild.bat",
"test": "mocha test/*.js"
},
"keywords": [
"NodeJs"
],
"author": "Nicolas Buzzi",
"license": "ISC",
"dependencies": {
"angular": "^1.8.0",
"angular-sanitize": "^1.8.0",
"body-parser": "^1.19.0",
"chai-http": "^4.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"uuidv4": "^6.1.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/node": "^14.0.14",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
}
}