forked from admissoesevida/admv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.57 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
{
"name": "admv",
"version": "1.0.0",
"description": "ADMV",
"scripts": {
"dev": "concurrently 'npm run dev --prefix app' 'npm run dev --prefix api'",
"start": "concurrently 'npm run start --prefix app' 'npm run start --prefix api'",
"build": "npm run build:api && npm run build:app",
"build:api": "npm run build --prefix api",
"build:app": "npm run build --prefix app",
"lint": "npm run lint:api && npm run lint:app",
"lint:api": "npm run lint --prefix api",
"lint:app": "npm run lint --prefix app",
"format": "npm run format:api && npm run format:app",
"format:api": "npm run format --prefix api",
"format:app": "npm run format --prefix app",
"test": "npm run test:api && npm run test:app",
"test:ci": "npm run test:ci --prefix api && npm run test:app",
"test:api": "npm run test --prefix api",
"test:app": "npm run test:ci --prefix app",
"install:ci": "npm ci --ignore-scripts && npm ci --prefix api && npm ci --prefix app",
"postinstall": "npm i --prefix app && npm i --prefix api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/admissoesevida/admv.git"
},
"keywords": [
"ADMV",
"Igreja",
"Assembléia",
"Tesouraria"
],
"author": "ADMV",
"license": "ISC",
"bugs": {
"url": "https://github.com/admissoesevida/admv/issues"
},
"homepage": "https://github.com/admissoesevida/admv#readme",
"devDependencies": {
"concurrently": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.4.0",
"prettier": "^1.16.4"
}
}