forked from openmobilityfoundation/mds-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.57 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "root",
"private": true,
"version": "0.0.12",
"license": "Apache-2.0",
"workspaces": [
"container-images/*",
"packages/*"
],
"engines": {
"node": "10.16.3"
},
"devDependencies": {
"@types/bluebird": "3.5.28",
"@types/body-parser": "1.17.1",
"@types/cors": "2.8.6",
"@types/d3": "5.7.2",
"@types/express": "4.17.1",
"@types/flat": "0.0.28",
"@types/geojson": "7946.0.7",
"@types/hapi__joi": "15.0.4",
"@types/jwt-decode": "2.2.1",
"@types/mocha": "5.2.7",
"@types/mockdate": "2.0.0",
"@types/moment-timezone": "0.5.12",
"@types/morgan": "1.7.37",
"@types/node": "10.14.21",
"@types/pg": "7.11.2",
"@types/point-in-polygon": "1.0.0",
"@types/redis": "2.8.14",
"@types/request-promise": "4.1.44",
"@types/should": "13.0.0",
"@types/sinon": "7.5.0",
"@types/supertest": "2.0.8",
"@types/uuid": "3.4.5",
"@types/yargs": "13.0.3",
"@typescript-eslint/eslint-plugin": "2.5.0",
"@typescript-eslint/parser": "2.5.0",
"chai": "4.2.0",
"check-node-version": "4.0.1",
"cypress": "3.5.0",
"dotenv": "8.2.0",
"eslint": "6.5.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.4.0",
"eslint-config-recommended": "4.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-promise": "4.2.1",
"git-revision-webpack-plugin": "3.0.4",
"husky": "3.0.9",
"lerna": "3.18.3",
"mocha": "6.2.2",
"mochawesome": "4.1.0",
"mockdate": "2.0.5",
"nodemon": "1.19.4",
"nyc": "14.1.1",
"prettier": "1.18.2",
"should": "13.2.3",
"source-map-support": "0.5.13",
"supertest": "4.0.2",
"ts-loader": "6.2.1",
"ts-mocha": "6.0.0",
"ts-node": "8.4.1",
"tsconfig-paths": "3.9.0",
"typescript": "3.6.4",
"unit.js": "2.1.1",
"uuid": "3.3.3",
"webpack": "4.41.2",
"webpack-bundle-analyzer": "3.6.0",
"webpack-cli": "3.3.9",
"zip-webpack-plugin": "3.0.0"
},
"types": "types/mds.d.ts",
"dependencies": {},
"scripts": {
"build": "yarn run:concurrent build",
"bundle": "yarn run:concurrent bundle",
"image": "yarn run:concurrent image",
"clean": "git clean -fdX -e '!.env' && yarn",
"run:concurrent": "lerna run --stream",
"run:sequential": "lerna run --stream --concurrency 1",
"test": "check-node-version --package --print && yarn test:eslint && yarn test:unit",
"test:eslint": "yarn run:concurrent test:eslint",
"test:unit": "yarn run:sequential test:unit",
"values": "bin/mdsctl templateValues"
}
}