-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.24 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.24 KB
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
{
"private": true,
"workspaces": [
"Source/*",
"Samples/Tutorials/Aggregates",
"Samples/Tutorials/Embeddings",
"Samples/Tutorials/GettingStarted",
"Samples/Tutorials/Projections",
"Samples/Tutorials/EventHorizon/Consumer",
"Samples/Tutorials/EventHorizon/Producer",
"Samples/Container",
"Samples/ExpressJS",
"Samples/MongoDBProjections"
],
"scripts": {
"prebuild": "yarn clean && yarn copy-readme",
"postbuild": "yarn lint",
"build": "tsc -b Source/tsconfig.json && tsc -b Samples/tsconfig.json",
"clean": "tsc -b Source/tsconfig.json --clean && tsc -b Samples/tsconfig.json --clean",
"test": "TS_NODE_PROJECT=tsconfig.settings.json mocha",
"copy-readme": "node Assets/copy-readme.js Source/*/",
"test:clean": "rimraf **/Distribution/**/for_*",
"lint": "eslint --quiet --ext .ts ./",
"lint:fix": "eslint --quiet --ext .ts ./ --fix",
"ci": "yarn build && yarn test && yarn test:clean"
},
"devDependencies": {
"@dolittle/typescript.build": "6.0.2",
"@dolittle/typescript.testing": "6.0.2",
"@types/node": "16.11.6",
"express": "4.17.2",
"glob": "7.2.0",
"module-alias": "2.2.2",
"rimraf": "3.0.2",
"ts-sinon": "2.0.2",
"typescript": "4.4.4"
}
}