-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 786 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 786 Bytes
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
{
"name": "notion-cms",
"private": true,
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"babel-jest": "^29.0.1",
"eslint": "^8.23.0",
"jest": "^29.0.1",
"lerna": "^5.4.3",
"prettier": "^2.7.1",
"typescript": "^4.8.2"
},
"scripts": {
"build": "lerna run build",
"setup": "lerna bootstrap",
"clean": "rm -rf node_modules packages/{types,client,react}/{node_modules,build}",
"lint": "lerna run lint",
"format": "lerna run format",
"test": "lerna run test",
"release": "yarn test && yarn build && lerna publish"
}
}