-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.84 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "comp-ranking",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon src/index.ts",
"test": "NODE_ENV=test jest --forceExit --maxWorkers=10",
"test:watch": "jest --watch",
"ts:watch": "tsc -w",
"ts:build": "tsc",
"tsc": "tsc",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"build": "npm run tsc",
"start": "node dist/index.js",
"format": "prettier --write \"**/*.{js,ts,json,md}\""
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/src/__tests__/utils/*",
"<rootDir>/dist/*"
],
"globals": {
"__TEST__": true
}
},
"devDependencies": {
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/jest": "^25.2.3",
"@types/lodash": "^4.14.149",
"@types/mongoose": "^5.7.20",
"@types/multer": "^1.3.10",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.0.1",
"nodemon": "^2.0.1",
"prettier": "^2.0.5",
"sucrase": "^3.10.1",
"superagent": "^5.1.3",
"supertest": "^4.0.2",
"tslint": "^6.0.0"
},
"dependencies": {
"cors": "^2.8.5",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"feed-read": "0.0.1",
"lodash": "^4.17.19",
"mongoose": "^5.9.15",
"multer": "^1.4.2",
"typescript": "^3.7.3"
}
}