-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "typescript-express-node",
"version": "1.0.0",
"description": "Typescript/Express/Node Seed App",
"repository": "https://github.com/atomist-seeds/typescript-express-node",
"main": "src/server.js",
"scripts": {
"compile": "tsc --project .",
"build": "run-s compile test",
"start": "npm run serve",
"serve": "node src/server.js",
"watch-node": "nodemon src/server.js",
"watch-ts": "tsc -w",
"test": "mocha --exit -r ts-node/register test/**.test.ts",
"lint": "eslint --format compact --ext .ts .",
"lint:fix": "npm run lint -- --fix"
},
"author": {
"name": "Atomist",
"email": "support@atomist.com",
"url": "https://atomist.com/"
},
"license": "Apache-2.0",
"dependencies": {
"@types/express": "^4.16.0",
"express": "^4.16.3",
"express-handlebars": "^3.1.0",
"morgan": "^1.9.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-http": "^4.2.0",
"@types/mocha": "^5.2.5",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^8.1.3",
"npm-run-all": "^4.1.5",
"ts-node": "^8.9.1",
"typescript": "^3.8.3"
}
}