-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "ggsmark-monorepo",
"private": true,
"repository": "https://github.com/johnnyhuy/ggsmark.git",
"author": "Johnny Huynh <[email protected]>",
"license": "MIT",
"scripts": {
"prepublishOnly": "lerna run build",
"postinstall": "lerna bootstrap && lerna run build",
"pretest": "npm run lint && lerna run build",
"format": "prettier packages/**/*.js --write",
"lerna": "lerna",
"lint": "eslint packages/**/*.js",
"test": "jest",
"release": "lerna version --create-release github --conventional-commits --yes && lerna publish from-package --yes"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"babel-plugin-add-module-exports": "^1.0.4",
"cross-env": "^7.0.2",
"dedent": "^0.7.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"jest-junit": "^11.1.0",
"lerna": "^3.22.1",
"prettier": "^2.1.1",
"remark": "^12.0.1",
"remark-html": "^12.0.0"
},
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.0",
"@babel/runtime": "^7.11.2",
"regenerator-runtime": "^0.13.7"
}
}