-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 979 Bytes
/
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
{
"name": "account-aaa",
"version": "1.0.0",
"description": "2019 EPAM JSA ShenZhen Project Team Peridot - account feature",
"main": "index.js",
"scripts": {
"install-all": "npm install && npm-recursive-install",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "concurrently \"cd frontend && npm run lint\" \"cd backend && npm run lint\"",
"fix": "concurrently \"cd frontend && npm run fix\" \"cd backend && npm run fix\""
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/green-fox-academy/account-AAA.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/green-fox-academy/account-AAA/issues"
},
"homepage": "https://github.com/green-fox-academy/account-AAA#readme",
"devDependencies": {
"pre-commit": "^1.2.2"
},
"dependencies": {
"concurrently": "^5.0.0",
"dotenv": "^8.2.0",
"recursive-install": "^1.4.0"
}
}