-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
52 lines (52 loc) · 1.25 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
{
"name": "transforms-monorepo",
"version": "0.0.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/nteract/outputs.git"
},
"scripts": {
"build": "tsc -b packages/",
"test": "jest",
"release": "lerna run release"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/preset-env": "7.12.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/npm": "^7.1.3",
"@types/jest": "25.1.4",
"@types/node": "13.13.30",
"@types/react": "16.9.55",
"@types/react-redux": "7.1.7",
"canvas": "2.6.1",
"conventional-changelog-conventionalcommits": "^4.6.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"enzyme-to-json": "3.6.1",
"jest": "25.5.4",
"lerna": "2.11.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "7.2.0",
"semantic-release": "^17.4.3",
"semantic-release-monorepo": "^7.0.5",
"ts-jest": "25.2.1",
"typescript": "3.8.3"
},
"workspaces": [
"packages/**"
],
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm"
]
}
}