This repository has been archived by the owner on Sep 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.71 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
65
66
67
68
69
70
71
72
{
"name": "spva",
"version": "0.0.0",
"description": "A social platform for voluntary actions.",
"main": "dist/production.js",
"typings": "dist/index.d.ts",
"repository": "[email protected]:kelal/spva.git",
"author": "kelal tech.",
"license": "UNLICENSED",
"private": true,
"scripts": {
"create-admin": "run-s prod && node dist/modules/account/scripts/create-admin.js",
"all": "run-s build \"run-p web watch dev\"",
"no-email-all": "cross-env NO_EMAIL=true run-s all",
"web": "cd web & run-s start",
"android": "cd mobile & run-s android",
"ios": "cd mobile & run-s ios",
"build": "run-s clean tsc",
"clean": "./node_modules/.bin/del-cli ./dist",
"dev": "cross-env [email protected] EMAIL_PASS=uY3gYisZRC6CKga HOSTNAME=0.0.0.0 nodemon -w dist dist/index.js",
"lint": "prettier {.,**}/*.{css,md,js,json,jsx,sass,scss,ts,tsx}",
"format": "prettier --write {.,**}/*.{css,md,js,json,jsx,sass,scss,ts,tsx}",
"final": "cross-env CI=true run-s prod && cd web && cross-env CI=true run-s prod && cd ../mobile && cross-env CI=true run-s prod && cd .. && git update-index --again",
"prod": "cross-env NODE_ENV=production run-s format build",
"run-p": "node ./node_modules/npm-run-all/bin/run-p/index.js",
"run-s": "node ./node_modules/npm-run-all/bin/run-s/index.js",
"start": "cross-env ENVFILE=.env.staging NODE_ENV=production node --redirect-warnings=warnings.log .",
"no-ssl-start": "cross-env NO_SSL_REDIRECT=true run-s start",
"local": "cross-env HOSTNAME=0.0.0.0 run-s start",
"no-ssl-local": "cross-env NO_SSL_REDIRECT=true run-s local",
"no-email-no-ssl-local": "cross-env NO_EMAIL=true run-s no-ssl-local",
"test": "echo \"This script is a no-op, so far.\"",
"tsc": "tsc",
"watch": "tsc -w",
"postinstall": "cd web && yarn install && yarn prod"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/deep-extend": "^0.4.31",
"@types/dotenv": "^6.1.1",
"@types/i18next": "^12.1.0",
"@types/koa-passport": "^4.0.2",
"@types/nodemailer": "^4.6.6",
"@types/passport-local": "^1.0.33",
"@types/qs": "^6.5.2",
"@types/request": "^2.48.1",
"@types/sharp": "^0.22.1",
"@types/stripe": "^6.26.5",
"axios": "^0.18.0",
"bcrypt": "^3.0.6",
"cron": "^1.7.1",
"cross-env": "^5.2.0",
"deep-extend": "^0.6.0",
"dotenv": "^8.0.0",
"i18next": "^15.0.6",
"koa-passport": "^4.1.1",
"meseret": "^1.8.3",
"nodemailer": "^5.1.1",
"passport-local": "^1.0.0",
"qs": "^6.6.0",
"request": "^2.88.0",
"sharp": "^0.22.0",
"socket.io": "^2.2.0",
"stripe": "^7.1.0",
"yenepaysdk": "^1.1.6"
},
"husky": {
"hooks": {
"pre-commit": "run-s final"
}
}
}