-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "labelit",
"version": "0.9.9",
"description": "Anononymize and classify data",
"main": "server/app.js",
"engines": {
"node": ">=12.13.0"
},
"dependencies": {
"busboy": "^0.3.1",
"csv-parse": "^4.15.4",
"csv-writer": "^1.6.0",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.7",
"path": "^0.12.7",
"pino": "^6.11.3"
},
"devDependencies": {
"ava": "^3.15.0",
"cross-env": "^7.0.3",
"mongodb-memory-server-core": "^6.9.6"
},
"scripts": {
"start": "node server/app.js",
"dev": "cross-env NODE_ENV=development nodemon server/app.js",
"test": "ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mirobit/labelit"
},
"author": "Michael Rotarius (https://github.com/Mirobit)",
"contributors": [
"Leona Hammelrath (https://github.com/leona-ha)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mirobit/labelit/issues"
},
"homepage": "https://github.com/mirobit/labelit#readme",
"ava": {
"files": [
"server/tests/*.js",
"!server/tests/db.js",
"!server/tests/init.js"
]
}
}