-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 965 Bytes
/
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
{
"name": "web-app",
"version": "1.0.0",
"description": "A Simple Web App Project",
"scripts": {
"lint": "eslint ./src --ext .ts --fix",
"test": "mocha -r ts-node/register ./test/**/*.spec.ts",
"build": "tsc --build",
"start": "ts-node-dev --respawn --transpileOnly ./src"
},
"license": "ISC",
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/expect.js": "^0.3.29",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.1",
"@types/sinon": "^7.5.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"expect.js": "^0.3.1",
"mocha": "^7.1.0",
"prettier": "1.19.1",
"sinon": "^9.0.1",
"ts-node": "^8.6.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"private": true
}