-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.17 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.17 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "valid-chess-moves-api",
"version": "1.0.0",
"description": "Backend service for the valid-chess-moves-web-app",
"main": "index.js",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.3",
"mongoose": "^5.9.3",
"nodemon": "^2.0.2",
"underscore": "^1.9.2"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@shelf/jest-mongodb": "^1.1.3",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.3",
"@types/helmet": "0.0.45",
"@types/jest": "^25.1.3",
"@types/mongoose": "^5.7.3",
"@types/node": "^13.7.7",
"@types/supertest": "^2.0.8",
"@types/underscore": "^1.9.4",
"@types/webpack": "^4.41.7",
"@types/webpack-node-externals": "^1.7.1",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"test": "jest --detectOpenHandles",
"start": "node dist/index",
"webpack": "webpack --config webpack.config.ts",
"build": "webpack --config webpack.prod.ts",
"lint": "tsc --noEmit && eslint './src/*/**/*.{js,ts,tsx}' --quiet --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caieu/valid-chess-moves-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/caieu/valid-chess-moves-api/issues"
},
"homepage": "https://github.com/caieu/valid-chess-moves-api#readme"
}