-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.58 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
{
"name": "go-dutch",
"version": "1.0.0",
"description": "Go dutch let you share costs for events",
"main": "dist/index.ts",
"scripts": {
"start": "forever dist/index.js",
"start-local": "node -r dotenv/config dist/index.js",
"serve": "nodemon -r dotenv/config src/index.ts",
"build-run-js": "npm run build && node -r dotenv/config dist/index.js",
"build": "rm -rf dist && tsc && cd ui && npm install && npm run build && cd .. && mkdir dist/public && cp -r ui/build/* dist/public && cp -r src/file dist/file",
"run-ui": "cd ui && npm start && cd ..",
"test": "echo \"Error: no test specified\" && exit 1",
"setup-husky": "husky install",
"prettify": "npx pretty-quick --staged",
"prettier": "prettier --single-quote --trailing-comma all --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/imana97/go-dutch.git"
},
"keywords": [
"event",
"share"
],
"author": "Iman Far & Bita Sadeghi",
"license": "MIT",
"bugs": {
"url": "https://github.com/imana97/go-dutch/issues"
},
"homepage": "https://github.com/imana97/go-dutch#readme",
"dependencies": {
"@types/axios": "^0.14.0",
"axios": "^1.3.2",
"express": "^4.18.2",
"forever": "^4.0.3",
"nodemailer": "^6.9.1",
"parse-dashboard": "^5.0.0",
"parse-server": "^5.4.0",
"parse-server-api-mail-adapter": "^2.2.0",
"typescript": "^4.9.5"
},
"devDependencies": {
"dotenv": "^16.0.3",
"husky": "^8.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1"
}
}