-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.19 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "ansel-auth-nodejs",
"version": "0.0.1",
"description": "NodeJS authentification for Ansel",
"directories": {
"test": "test"
},
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run tslint",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "jest --detectOpenHandles --coverage --verbose",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/preist/ansel-auth-nodejs.git"
},
"keywords": [
"typescript",
"auth",
"nodejs",
"express"
],
"author": "Igor Putina",
"license": "MIT",
"bugs": {
"url": "https://github.com/preist/ansel-auth-nodejs/issues"
},
"homepage": "https://github.com/preist/ansel-auth-nodejs#readme",
"dependencies": {
"bcrypt-nodejs": "^0.0.3",
"dotenv": "^6.2.0",
"ejs": "^2.6.1",
"errorhandler": "^1.5.0",
"express": "^4.16.4",
"mongoose": "^5.4.2",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/bcrypt-nodejs": "^0.0.30",
"@types/chai": "^4.1.7",
"@types/dotenv": "^6.1.0",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.12",
"@types/mongodb": "^3.1.18",
"@types/mongoose": "^5.3.7",
"@types/node": "^10.12.18",
"@types/supertest": "^2.0.7",
"@types/winston": "^2.4.4",
"chai": "^4.2.0",
"jest": "^23.6.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"supertest": "^3.3.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
}
}