forked from wix-incubator/sample-wix-rest-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "tpe-poc",
"version": "1.0.0",
"description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.",
"engineStrict": true,
"main": "src/index.js",
"engines": {
"node": "9.5.0"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/jest": "~23.3.1",
"@types/node": "~8.10.22",
"esparse": "^0.5.0",
"jest": "^23.4.2",
"nodemon": "^1.18.10",
"rimraf": "~2.6.2",
"ts-jest": "~23.0.1",
"tslint": "~5.11.0",
"tslint-microsoft-contrib": "~5.1.0",
"tsutils": "~3.0.0",
"typescript": "~3.0.1"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"watch": "nodemon src/index.js",
"start": "nodemon src/index.js",
"pretest": "npm run lint",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Jakub Synowiec <[email protected]>",
"license": "APLv2",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"json-server": "^0.14.0",
"jsonwebtoken": "^8.3.0",
"tslib": "~1.9.3"
}
}