-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.36 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
48
49
50
51
52
53
54
55
{
"name": "postfix-notation",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"start": "npm run build && npm run serve",
"build": "npm run build-ts",
"serve": "node dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,node\" -c \"npm run watch-ts\" \"nodemon dist/server.js\"",
"build-ts": "tsc",
"test": "export NODE_ENV='test' && npm run build && jest --forceExit",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js",
"csv"
],
"transform": {
"^.+\\.(ts)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.(ts|js)"
],
"testEnvironment": "node",
"notify": false,
"verbose": true,
"testResultsProcessor": "./node_modules/jest-junit-reporter"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^20.0.8",
"@types/node": "^8.0.28",
"jest": "^21.0.1",
"jest-junit-reporter": "^1.1.0",
"nodemon": "^1.12.0",
"ts-jest": "^21.0.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
},
"dependencies": {
"body-parser": "^1.18.1",
"express": "^4.15.4"
}
}