-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "codelex-flight-planner",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"demo": "ts-node ./src/demo-data/run.ts",
"test": "jest --env=node --colors test --verbose=true",
"test-pattern": "jest --env=node --colors --verbose=true",
"test-00": "npm run test-pattern 00-*",
"test-01": "npm run test-pattern 01-*",
"test-02": "npm run test-pattern 02-*",
"test-03": "npm run test-pattern 03-*",
"test-04": "npm run test-pattern 04-*",
"test-05": "npm run test-pattern 05-*",
"test-06": "npm run test-pattern 06-*",
"prettier": "prettier --write './{src,test}/**/*.ts'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/csvtojson": "^1.1.5",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.138",
"@types/moment": "^2.13.0",
"axios": "^0.19.0",
"csvtojson": "^2.0.10",
"jest": "^24.9.0",
"jest-serial-runner": "^1.1.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"prettier": "1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2"
}
}