-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "@sprucejs/core",
"version": "0.0.4",
"description": "",
"scripts": {
"dev": "tsc-watch --onSuccess \"npm run demo\"",
"demo": "node dist/modules/demo/src/main.js",
"lint": "tslint -p tsconfig.json -c tslint.json",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage --config jest.config.json --no-cache",
"prepare": "rimraf dist && tsc"
},
"author": "Daniel Cornock",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.5",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.159",
"ts-jest": "^26.1.3",
"tsc-watch": "^4.2.9",
"tslint": "^6.1.2",
"typescript": "^3.9.6"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jest": "^26.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"promisify": "0.0.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"tsyringe": "^4.3.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
]
}