-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.12 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.12 KB
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
{
"name": "mono",
"private": true,
"devDependencies": {
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.3",
"cypress": "^7.4.0",
"lerna": "^4.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tsdx": "^0.14.1",
"typescript": "^4.2.4"
},
"workspaces": [
"modules/*"
],
"scripts": {
"lerna": "lerna",
"start": "lerna run start --stream --parallel",
"test": "lerna run test --",
"lint": "lerna run lint -- --fix",
"clean": "rm -rf node_modules* && rm -rf modules/*/node_modules* modules/*/dist* modules/*/.nyc_output*",
"clean:app": "rm -rf example/node_modules* example/.cache* example/dist* example/yarn.lock*",
"build": "lerna run build",
"prepublish": "lerna run prepublish",
"publish": "lerna publish",
"start:app": "yarn clean:app && yarn run build && yarn --cwd example && yarn --cwd example start",
"cypress": "start-server-and-test start:app http://localhost:1234 'cypress run'",
"cypress:open": "start-server-and-test start:app http://localhost:1234 'cypress open'"
},
"dependencies": {
"start-server-and-test": "^1.12.3"
}
}