-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
46 lines (46 loc) · 1.4 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
{
"name": "erebos-project",
"version": "0.13.2",
"description": "Swarm client and tools",
"repository": "[email protected]:MainframeHQ/erebos.git",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "lerna clean -y && del ./node_modules",
"lint": "eslint 'packages/*/src/**.ts' '__tests__/**.ts'",
"lint:fix": "yarn lint --fix",
"test": "jest --config jest.config.js",
"test:all": "yarn lint && yarn test",
"test:ci": "jest --ci --config jest.config.ci.js --runInBand",
"build": "lerna run build",
"start": "yarn build && yarn test:all"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/expect-puppeteer": "^4.4.0",
"@types/jest": "^24.9.0",
"@types/jest-environment-puppeteer": "^4.3.1",
"@types/puppeteer": "^2.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"del-cli": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-mainframe": "^4.0.1",
"jest": "^24.9.0",
"jest-puppeteer": "^4.4.0",
"lerna": "^3.20.2",
"prettier": "~1.19.1",
"puppeteer": "^2.0.0",
"ts-jest": "^24.3.0",
"typescript": "~3.7.5"
}
}