-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.63 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.63 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
{
"name": "dnotebook-server",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"start": "yarn build && node build/index.js",
"test": "nyc mocha --require ts-node/register tests/**/*.test.ts",
"test:clean": "yarn build:clean && yarn test",
"dev": "nodemon -L --exec ts-node ./src/index.ts",
"build": "tsc",
"build:clean": "rimraf ./build && tsc",
"lint": "eslint ./src",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"coverage": "nyc report --reporter=text-lcov | coveralls && nyc report --reporter=lcov",
"patch": "npm version patch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/babel__core": "^7.1.16",
"@types/chai": "^4.2.19",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mocha": "^8.2.2",
"@types/node": "^16.11.7",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"dotenv": "^10.0.0",
"eslint": "^7.1.0",
"mocha": "^7.2.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"yarn": "^1.22.10"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"dependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/plugin-transform-typescript": "^7.16.8",
"@babel/preset-env": "^7.16.0",
"@babel/register": "^7.10.1",
"cors": "^2.8.5",
"express": "^4.17.2",
"regenerator-runtime": "^0.13.9"
}
}