-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 891 Bytes
/
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
{
"name": "styn-root",
"workspaces": {
"packages": [
"packages/*"
]
},
"private": true,
"version": "0.0.0",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"np": "^7.2.0",
"rollup": "^2.35.1",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"scripts": {
"release": "yarn test && yarn type-check && yarn build && lerna publish",
"bootstrap": "lerna bootstrap",
"type-check": "lerna exec yarn type-check",
"build": "lerna exec yarn build",
"test": "jest"
}
}