-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 2.93 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "dino-budgeter",
"version": "1.0.0",
"description": "budgeting webapp",
"main": "dist/server/server.js",
"dependencies": {
"@types/bcrypt": "^2.0.0",
"@types/body-parser": "^1.17.0",
"@types/connect-ensure-login": "^0.1.4",
"@types/connect-flash": "0.0.34",
"@types/connect-pg-simple": "^4.2.0",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.16.0",
"@types/express-session": "^1.15.10",
"@types/lodash": "^4.14.116",
"@types/morgan": "^1.7.35",
"@types/node": "^10.7.1",
"@types/passport": "^0.4.6",
"@types/passport-local": "^1.0.33",
"@types/pg-promise": "^5.4.3",
"@types/randomstring": "^1.1.6",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"@types/react-router-dom": "^4.3.0",
"bcryptjs": "^2.4.3",
"bignumber.js": "^7.2.1",
"body-parser": "^1.18.3",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"connect-pg-simple": "^6.0.1",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"express-session": "^1.15.6",
"express-validator": "^5.3.0",
"lodash": "^4.17.21",
"morgan": "^1.9.1",
"nodemailer": "^6.4.16",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg-promise": "^10.5.2",
"randomstring": "^1.1.5",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-media": "^1.8.0",
"react-router-dom": "^4.3.1",
"typescript-json-api": "^1.0.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/nodemailer": "^4.6.6",
"awesome-typescript-loader": "^5.2.0",
"source-map-loader": "^0.2.4",
"tslint": "^5.12.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0",
"tslint-react-hooks": "^1.1.0",
"typescript": "^3.2.0",
"typescript-tslint-plugin": "^0.3.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-server": "node_modules/.bin/tsc",
"build-client": "node_modules/.bin/webpack --mode=development",
"build-client-prod": "node_modules/.bin/webpack --mode=production",
"build": "npm run build-server && npm run build-client",
"build-prod": "npm run build-server && npm run build-client-prod",
"watch-server": "node_modules/.bin/tsc -w",
"watch-serve": "find dist/server dist/shared | entr -r sh -c \"npm run serve\"",
"watch-client": "node_modules/.bin/webpack --mode=development --watch",
"lint": "node_modules/.bin/tslint -c tslint.json -p tsconfig.json",
"serve": "node dist/server/server.js",
"watch-all": "npm run watch-server & npm run watch-client & npm run watch-serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seveneightn9ne/budgeter.git"
},
"author": "Jess Kenney",
"license": "MIT",
"bugs": {
"url": "https://github.com/seveneightn9ne/budgeter/issues"
},
"homepage": "https://github.com/seveneightn9ne/budgeter#readme"
}