-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
{
"name": "nintex_url_shortening_server",
"version": "1.0.0",
"description": "Nintex assignment code",
"main": "index.js",
"scripts": {
"ts-test": "mocha -r ts-node/register test/**/*.spec.ts",
"test": "npm run build && npm run ts-test",
"start": "npm run build && node ./build/index.js",
"build": "rimraf build && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salmanlone/nintex_url_shortening_server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/salmanlone/nintex_url_shortening_server/issues"
},
"homepage": "https://github.com/salmanlone/nintex_url_shortening_server#readme",
"dependencies": {
"@types/lodash": "^4.14.134",
"@types/mocha": "^5.2.7",
"@types/restify": "^7.2.11",
"body-parser": "^1.19.0",
"chai-http": "^4.3.0",
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"lodash": "^4.17.11",
"mongoose": "^5.6.0",
"restify": "^8.3.3",
"restify-cors-middleware": "^1.1.1",
"restify-swagger-jsdoc": "^3.2.0",
"rimraf": "^2.6.3",
"shortid": "^2.2.14",
"supertest": "^4.0.2",
"swagger": "^0.7.5",
"swagger-jsdoc": "^3.2.9",
"typescript": "^3.5.2",
"typings": "^2.1.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.4",
"ts-node": "^8.3.0",
"tslint": "^5.17.0"
}
}