-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.96 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
{
"name": "lets-code",
"version": "1.0.0",
"description": "",
"main": "src/startup/server.ts",
"engines": {
"node": ">=15"
},
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored",
"start": "node ./dist/startup/server.js",
"lint": "./node_modules/.bin/eslint 'src/**' 'tests/**' --fix",
"fmt": "prettier --write ./src ./tests",
"test": "jest --passWithNoTests --runInBand --no-cache",
"test:unit": "npm run test -- --watch -c jest-unit.config.js",
"test:integration": "npm run test -- --watch -c jest-integration.config.js",
"test:staged": "npm run test -- --findRelatedTests",
"test:ci": "npm run test -- --coverage",
"test:acceptance:e2e:dev": "newman run ./tests/acceptance/lets-code-api.postman_collection.json -e ./tests/acceptance/lets-code-api-dev.postman_environment.json"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "7.12.13",
"@babel/core": "7.12.13",
"@babel/node": "7.12.13",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "7.12.13",
"@babel/preset-typescript": "7.12.13",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/jsonwebtoken": "^8.5.6",
"@typescript-eslint/eslint-plugin": "^4",
"babel-plugin-add-module-exports": "1.0.4",
"babel-plugin-module-resolver": "4.1.0",
"eslint": "^7",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2",
"eslint-plugin-node": "^11",
"eslint-plugin-promise": "^4",
"eslint-plugin-standard": "^4",
"git-commit-msg-linter": "^3.2.6",
"husky": "^4.3.7",
"jest": "^27.4.0",
"lint-staged": "^10.5.3",
"newman": "^5.3.0",
"prettier": "^2.5.0",
"ts-jest": "^27.0.7",
"typescript": "^4.5.0"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1"
}
}