-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "new-app",
"version": "1.0.0",
"description": "new-app",
"homepage": "#readme",
"repository": {
"type": "git",
"url": "https://github.com/user/new-app"
},
"main": "build/main.js",
"scripts": {
"dev": "nodemon",
"setup": "npm update && npm install",
"build": "rimraf ./build && tsc",
"start:fast": "node build/main.js",
"start": "npm run build && node build/main.js",
"upinstart": "npm run setup && npm run start",
"test:exit": "mocha --exit -r ts-node/register src/tests/*.test.ts",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'src/tests/*.ts'",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chai": "latest",
"@types/express": "latest",
"@types/mocha": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"nodemon": "latest",
"rimraf": "latest",
"ts-node": "latest",
"typescript": "latest"
},
"dependencies": {
"chai": "latest",
"chai-http": "latest",
"dotenv": "latest",
"ejs": "latest",
"express": "latest",
"mocha": "latest",
"rollbar": "latest",
"simple-txt-logger": "latest"
}
}