-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.05 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
{
"name": "reforml-project",
"private": true,
"devDependencies": {
"lerna": "^3.22.1"
},
"workspaces": [
"packages/*",
"docs"
],
"scripts": {
"build": "cd packages/reforml && yarn build",
"watch": "cd packages/reforml && yarn start",
"example": "cd packages/example && yarn start",
"test": "run-s test:*",
"test:build": "yarn workspace reforml test:build",
"test:lint": "yarn workspace reforml test:lint",
"test:unit": "yarn workspace reforml test:unit",
"test:coverage": "yarn workspace reforml test:coverage",
"test:watch": "yarn workspace reforml test:watch",
"publish": "lerna publish",
"deploy": "yarn docs:deploy",
"docs:deploy": "yarn workspace @reforml/docs deploy",
"docs:dev": "yarn workspace @reforml/docs start",
"docs:clean": "yarn workspace @reforml/docs clean",
"docs:build": "yarn workspace @reforml/docs build",
"docs:serve": "yarn workspace @reforml/docs serve",
"docs:icon": "yarn workspace @reforml/docs icon"
},
"dependencies": {
"ts-jest": "^26.1.1"
}
}