-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.66 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
{
"name": "@coursehero/theia-monorepo",
"version": "0.0.0",
"private": true,
"repository": "https://github.com/coursehero/theia.git",
"author": "Connor Clark <connor.clark@coursehero.com>",
"license": "Apache-2.0",
"dependencies": {
"lerna": "^3.2.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.23",
"@types/consolidate": "^0.0.33",
"@types/cookie-parser": "^1.4.1",
"@types/debug": "^0.0.30",
"@types/escape-html": "^0.0.20",
"@types/express": "^4.11.0",
"@types/fs-extra": "^5.0.0",
"@types/jest": "^22.1.4",
"@types/mime-types": "^2.1.0",
"@types/morgan": "^1.7.35",
"@types/node": "^10.5.3",
"@types/require-from-string": "^1.2.0",
"@types/rimraf": "^2.0.2",
"@types/serve-favicon": "^2.2.30",
"autocannon": "^2.4.1",
"jest": "^22.4.2",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.1",
"ts-node": "^5.0.1",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^3.0.1"
},
"pre-commit": "lint",
"scripts": {
"bootstrap": "yarn install && lerna bootstrap",
"build": "lerna --concurrency 1 exec 'pwd && rimraf dist && mkdir dist && tsc --outDir dist' && lerna run postbuild",
"lint": "tslint --fix --project .",
"test": "DEBUG=${DEBUG:-theia*} jest"
},
"jest": {
"testURL": "http://localhost",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/var/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}