-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "npm-lockbox",
"version": "0.0.1-alpha.0",
"description": "manage and restrict npm dependencies with specific versions or date",
"main": "src/index.ts",
"scripts": {
"dev": "nodemon",
"build": "tsc",
"test": "mocha -r ts-node/register -r tsconfig-paths/register ./tests/**/*.test.ts --exit --recursive"
},
"keywords": [
"npm",
"dependency",
"lockbox"
],
"engines": {
"node": ">=10.0.0 <11.0.0"
},
"author": "Raccoon Li <[email protected]>",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"mongodb": "3.7.4",
"semver": "^7.5.4"
},
"devDependencies": {
"@types/bson": "4.0.3",
"@types/express": "^4.17.18",
"@types/mocha": "8.2.2",
"@types/mongodb": "3.5.10",
"@types/node": "^10.17.60",
"@types/semver": "^7.5.3",
"mocha": "8.4.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "4.9.5"
},
"nodemonConfig": {
"verbose": true,
"exec": "ts-node ./src/index.ts",
"watch": [
"**"
],
"ext": "ts,js,json"
}
}