-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 976 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
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "mailocity",
"version": "1.0.0",
"description": "Email client available on mobile and web",
"main": "index.js",
"eslintConfig": {
"env": {
"node": true
}
},
"scripts": {
"web": "cd web && npm run start",
"mobile": "cd mobile && expo start",
"server": "cd server && npm run start",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/Rangyia/mailocity.git"
},
"keywords": [
"Email",
"Mail",
"Client",
"Mobile"
],
"author": "Jess Graham",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/Rangyia/mailocity/issues"
},
"homepage": "https://gitlab.com/Rangyia/mailocity#readme",
"devDependencies": {
"husky": "^7.0.4"
},
"husky": {
"hooks": {
"pre-commit": "cd mobile && npm run lint-mobile"
}
},
"dependencies": {
"expo-av": "^10.2.0"
}
}