-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.9 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.9 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
50
51
52
53
54
55
{
"name": "scaffolding-express-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-p -l type-check:watch start:dev",
"start:dev": "nodemon --exec babel-node --extensions \".ts\" src/index.ts",
"start:debug": "run-p -l type-check:watch \"start:dev -- --inspect-brk\"",
"start:prod": "node ./dist/index.js",
"build": "run-p -l type-check build:prod",
"build:prod": "npm run clean && babel src -d dist --ignore=\"./src/test-runners\" --extensions \".ts\"",
"build:dev": "npm run clean && babel src -d dist --ignore=\"./src/test-runners\" --extensions \".ts\" --source-maps",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"test": "cross-env NODE_ENV=test jest -c ./config/test/jest.js --verbose",
"test:watch": "npm run test -- --watchAll -i --no-cache",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lemoncode/scaffolding-express-typescript.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lemoncode/scaffolding-express-typescript/issues"
},
"homepage": "https://github.com/Lemoncode/scaffolding-express-typescript#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.15",
"cross-env": "^7.0.2",
"jest": "^26.6.1",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.2",
"typescript": "^3.9.7"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"regenerator-runtime": "^0.13.7",
"stripe": "^8.131.1"
}
}