-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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": "magtu-parser",
"version": "1.0.0",
"description": "",
"main": "dist",
"scripts": {
"start": "node dist",
"dev": "ts-node src",
"test": "eslint src/**/*.ts && jest",
"build": "tsc"
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
},
"keywords": [],
"author": "",
"license": "GPL-3.0",
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/jest": "^24.0.15",
"@types/jsdom": "^12.2.4",
"@types/md5": "^2.1.33",
"@types/mongoose": "^5.5.9",
"@types/node": "^12.6.8",
"@types/node-fetch": "^2.3.7",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {
"dotenv": "^8.0.0",
"jsdom": "^15.1.1",
"md5": "^2.2.1",
"mongoose": "^5.6.5",
"node-fetch": "^2.6.0",
"winston": "^3.2.1",
"xlsx": "^0.14.3"
}
}