-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
64 lines (64 loc) · 1.55 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "learnscape",
"version": "1.20.1",
"description": "Project developed to make cncf landscape easier and more accissible to beginners",
"main": "start.js",
"scripts": {
"prepare": "husky install",
"postinstall": "node start install-children",
"start": "node start api:client",
"api:client": "node start api:client",
"client": "node start client",
"api": "node start api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/starlightknown/tastic4.git"
},
"keywords": [
"nodejs",
"expressjs",
"mongodb",
"frontend",
"backend",
"cncf",
"landscape",
"hackathon"
],
"author": "Fantastic Four Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/starlightknown/tastic4/issues"
},
"homepage": "https://github.com/starlightknown/tastic4#readme",
"dependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"chalk": "^4.1.2",
"concurrently": "^6.4.0",
"dotenv": "^10.0.0",
"eslint": "^7.14.*",
"eslint-config-prettier": "^7.*.*",
"eslint-plugin-prettier": "^4.0.0",
"figlet": "^1.5.2",
"husky": "^7.0.4",
"kill": "^0.0.2",
"lint-staged": "^12.1.2",
"lodash": "^4.17.21",
"material-ui": "^0.20.2",
"ngrok": "^4.2.2",
"path": "^0.12.7",
"prettier": "^2.5.1",
"react-router-dom": "^6.1.0",
"twilio": "^3.71.3"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"husky": "^7.0.0"
}
}