-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.64 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.64 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
{
"name": "blogv1-frontend-ejs",
"description": "Frontend to my blog page",
"author": "Carlos Eduardo Ferreira Carrinho <carrinhoedu@gmail.com>",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "rm -rf ./dist && tsc -p .",
"start": "node ./dist/app.js",
"pretest": "npm run build",
"test": "jest",
"dev:server": "nodemon --watch 'src/' --exec 'ts-node src/bff/app.ts' -e ts",
"test:unit": "jest -c jest-unit-config.js",
"test:unit:watch": "jest --watch --coverage=false -c jest-unit-config.js",
"test:integration": "jest -c jest-integration-config.js",
"test:integration:watch": "jest --watch --coverage=false -c jest-integration-config.js",
"test:system": "jest -c jest-system-config.js",
"test:system:watch": "jest --watch --coverage=false -c jest-system-config.js",
"test:staged": "npm test -- --passWithNoTests --coverage=false --silent",
"test:ci": "npm test -- --coverage"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/marked": "^4.0.1",
"@types/method-override": "^0.0.32",
"@types/supertest": "^2.0.11",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.2.2",
"nodemon": "^2.0.15",
"supertest": "^6.2.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^0.25.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"dotenv": "^14.3.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"marked": "^4.0.8",
"method-override": "^3.0.0",
"node-dependency-injection": "^2.7.1"
}
}