-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
63 lines (63 loc) · 2.13 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
{
"dependencies": {
"@socket.io/admin-ui": "^0.5.1",
"axios": "^1.6.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"jest": "^29.5.0",
"mongoose": "^7.5.0",
"node-cache": "^5.1.2",
"nodemon": "^2.0.22",
"random-word-slugs": "^0.1.7",
"socket.io": "^4.6.1"
},
"scripts": {
"build": "npx tsc",
"build:dev": "npx tsc --project tsconfig.development.json",
"start": "node dist/server.js",
"build:ci": "npm i && npm run build",
"dev": "npx tsc --project tsconfig.development.json && concurrently \"npx tsc --project tsconfig.development.json --watch\" \"nodemon dist/server.js\"",
"dev:skip-tests": "npx tsc && concurrently \"npx tsc --watch --project tsconfig.skip-tests.json\" \"nodemon dist/server.js\"",
"test": "rm -rf dist && jest --watchAll --verbose --coverage",
"test:ci": "jest --ci --verbose --coverage",
"build:package": "rm -rf node_modules && rm package-lock.json && npm i",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"format": "npx prettier --write"
},
"name": "time-share-v2",
"description": "",
"version": "1.0.0",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nmpereira/time-share-v2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nmpereira/time-share-v2/issues"
},
"homepage": "https://github.com/nmpereira/time-share-v2#readme",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/http-server": "^0.12.1",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"concurrently": "^8.0.1",
"dotenv": "^16.3.1",
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.8",
"socket.io-client": "^4.6.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}