-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.44 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
{
"name": "octolabyrinth",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/deepsea-dev/octolabyrinth.git",
"author": "harry48225 <[email protected]>, bwbellairs <[email protected]>",
"license": "MIT",
"type": "module",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.1",
"generate-maze": "^1.1.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"concurrently": "^7.3.0",
"eslint": "^8.20.0",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"scripts": {
"server": "nodemon --watch './**/*.ts' --exec 'node --experimental-specifier-resolution=node --loader ts-node/esm' src/index.ts",
"app": "yarn --cwd app run start",
"start": "concurrently \"yarn run server\" \"yarn run app\"",
"lint-server": "eslint . --ext .ts",
"lint-app": "yarn --cwd app run lint",
"lint": "yarn lint-server && yarn lint-app",
"test-server": "jest tests/**",
"test-app": "yarn --cwd app run test",
"ci": "yarn install --frozen-lockfile && yarn --cwd app install --frozen-lockfile",
"build-server": "tsc src --ourDir ./build"
}
}