forked from microsoft/BotFramework-Emulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 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
{
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"build": "npm rebuild node-sass && lerna run build",
"start": "cd packages\\app\\client && npm run start",
"test": "jest --no-cache",
"test:coveralls": "jest --runInBand --bail --coverage --coverageReporters=text-lcov | coveralls"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "23.6.0"
},
"jest": {
"setupTestFrameworkScriptFile": "./testSetup.js",
"transform": {
"^.+\\.(tsx|ts|js)$": "./babel-jest-config"
},
"testURL": "http://localhost",
"testMatch": [
"<rootDir>/packages/**/src/**/?(*.)(spec|test).(ts)?(x)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"lerna": "3.4.0"
}
}