forked from Isaac95Cr/safis-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.56 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
44
45
46
47
48
49
50
51
52
53
{
"name": "safis-cms-monorepo",
"description": "A headless, git-based and GraphQL native CMS",
"scripts": {
"lerna-install": "npm install && lerna bootstrap",
"bootstrap": "lerna bootstrap",
"prebootstrap": "npm run build",
"build": "lerna run build --parallel --ignore safis-cms --ignore safis-cms-app",
"clean": "lerna clean --yes",
"dev": "npm-run-all --print-label --parallel dev:**",
"dev:app": "DOTENV_PATH=$PWD lerna run develop --scope safis-cms-app --stream",
"dev:server": "DOTENV_PATH=$PWD nodemon --exec 'npm run bootstrap && lerna run dev --scope safis-cms-server --stream'",
"lint": "eslint . --ignore-path .gitignore",
"test": "lerna run test",
"lerna": "npm run lerna"
},
"repository": {
"type": "git",
"url": "git+https://github.com/safis-io/safis-cms.git"
},
"keywords": [
"safis-cms",
"cms",
"git based cms",
"content management system"
],
"author": {
"name": "Safis",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/safis-io/safis-cms/issues"
},
"homepage": "https://github.com/safis-io/safis-cms#readme",
"engines": {
"node": ">=14.17.0",
"npm": ">=6.14.13"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"lerna": "^3.22.1",
"typescript": "^4.3.4"
},
"dependencies": {
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5"
}
}