-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.11 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
39
40
41
42
43
{
"name": "notion-to-markdown",
"version": "1.0.0",
"repository": "[email protected]:smarterlabs/notion-to-markdown.git",
"author": "Kennedy Rose <[email protected]>",
"private": true,
"scripts": {
"dev": "cd packages/notion-to-markdown && yarn dev",
"build": "yarn run clean && cd packages/orchestration && dotenv -e ../../.env -- npm run build",
"clean": "del dist",
"start": "dotenv -e ./.env -- node packages/notion-to-markdown/src/index.js",
"serve": "serve dist",
"stop": "sudo killall -9 node",
"lint": "eslint --fix",
"version": "lerna version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix"
]
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@smarterlabs/babel-preset": "^1.0.8",
"@smarterlabs/eslint-config": "^1.0.7",
"del-cli": "^4.0.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.30.0",
"husky": "^4.2.0",
"lerna": "^3.22.1",
"lint-staged": "^11.0.0",
"serve": "^12.0.0"
}
}