forked from iagojsilva/conduit-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.91 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
{
"name": "lab",
"version": "0.1.1",
"main": "index.js",
"author": "Iago",
"license": "MIT",
"private": true,
"scripts": {
"start": "nest start",
"start:dev": "nest start --watch",
"test": "jest --passWithNoTests && yarn test:integration",
"test:watch": "jest --watch",
"test:integration": "jest --passWithNoTests --config jest.config.integration.js",
"test:api": "APIURL=http://localhost:3000/api src/config/test/run-api-tests.sh",
"test:integration:watch": " yarn test:integration --watch",
"lint": "eslint . --ext js,ts",
"lint:fix": "eslint --fix . --ext js,ts",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"build": "tsc",
"ci": "yarn lint && yarn type-check && yarn test"
},
"dependencies": {
"@nestjs/cli": "^10.2.1",
"@nestjs/common": "^10.2.10",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.2.10",
"@nestjs/platform-express": "^10.2.10",
"@nestjs/serve-static": "^4.0.0",
"argon2": "^0.28.3",
"cors": "^2.8.5",
"dotenv": "8.2.0",
"express": "^4.17.2",
"fastify": "^3.25.3",
"fp-ts": "2.9.5",
"io-ts": "^2.2.16",
"io-ts-types": "^0.5.16",
"jest-haste-map": "^27.5.0",
"jose": "^4.3.7",
"lodash-es": "^4.17.21",
"module-alias": "2.2.2",
"monocle-ts": "^2.3.11",
"newtype-ts": "^0.3.4",
"slugify": "^1.6.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@nestjs/schematics": "^10.0.3",
"@nestjs/testing": "^10.2.10",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "26.0.22",
"@types/lodash-es": "^4.17.5",
"@types/module-alias": "2.0.0",
"@types/node": "14.14.41",
"@types/uuid": "^8.3.3",
"jest": "^26.6.3",
"jest-regex-util": "^27.4.0",
"nodemon": "2.0.7",
"sucrase": "3.17.1",
"ts-jest": "26.5.4",
"type-detect": "^4.0.8",
"typescript": "5.2.2"
}
}