forked from donategifts/donategifts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 3.86 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "donategifts",
"version": "1.0.0",
"description": "",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run clean && npm run compile && npm run gulp:build && npm run webpack:build",
"clean": "rimraf uploads dist public/css/*.css public/js/*.js",
"compile": "tsc",
"debug": "nodemon",
"dev": "concurrently \"npm run debug\" \"npm run webpack:watch\" \"npm run gulp:watch\"",
"gulp:build": "gulp",
"gulp:watch": "gulp watch",
"lint:pug": "pug-lint views",
"lint:src": "eslint --ext .ts src/",
"lint:jsx": "eslint -c ./js/react/.eslintrc --ext .jsx js/react/",
"lint:scss": "stylelint design/",
"lint": "npm run lint:pug && npm run lint:src && npm run lint:jsx && npm run lint:scss",
"introspect": "kysely-codegen introspect --url postgres://postgres:postgres@localhost:5432/donategifts --out-file src/db/types/generated/database.ts",
"prepare": "husky install | chmod ug+x .husky/*",
"start": "node dist/index.js",
"webpack:build": "webpack --mode=production",
"webpack:watch": "webpack --mode=development --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stacysealky/donategifts.git"
},
"author": "Stacy Sealky Lee",
"license": "ISC",
"bugs": {
"url": "https://github.com/stacysealky/donategifts/issues"
},
"homepage": "https://github.com/stacysealky/donategifts#readme",
"dependencies": {
"aws-sdk": "2.1435.0",
"axios": "1.4.0",
"bcrypt": "5.1.0",
"body-parser": "1.20.2",
"connect-mongo": "5.0.0",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"discord.js": "14.12.1",
"dotenv": "16.3.1",
"express": "4.18.2",
"express-mongo-sanitize": "2.2.0",
"express-rate-limit": "6.9.0",
"express-session": "1.17.3",
"express-validator": "7.0.1",
"google-auth-library": "9.0.0",
"jsonwebtoken": "9.0.1",
"kysely": "0.26.1",
"moment": "2.29.4",
"mongoose": "6.8.1",
"multer": "1.4.5-lts.1",
"multer-sharp-s3": "0.2.5",
"nodemailer": "6.9.4",
"paypal-rest-sdk": "1.8.1",
"pg": "8.11.2",
"pino": "8.15.0",
"pino-pretty": "10.2.0",
"pug": "3.0.2",
"request-ip": "3.3.0",
"sharp": "0.32.4",
"stripe": "12.18.0",
"uuid": "9.0.0",
"xss": "1.0.14"
},
"devDependencies": {
"@babel/core": "7.22.10",
"@babel/plugin-transform-runtime": "7.22.10",
"@babel/preset-env": "7.22.10",
"@babel/preset-react": "7.22.5",
"@mantine/core": "^7.1.2",
"@types/express": "4.17.17",
"@types/express-session": "1.17.7",
"@types/lusca": "1.7.1",
"@types/multer": "1.4.7",
"@types/multer-s3": "3.0.0",
"@types/paypal-rest-sdk": "1.7.6",
"@types/pg": "8.10.2",
"@types/uuid": "9.0.2",
"babel-loader": "9.1.3",
"bootstrap": "5.3.1",
"concurrently": "8.2.0",
"eslint-config-slurp-config": "1.0.4",
"eslint-plugin-react": "7.33.1",
"faker": "5.5.3",
"gulp": "4.0.2",
"gulp-autoprefixer": "8.0.0",
"gulp-concat": "2.6.1",
"gulp-dart-sass": "1.1.0",
"gulp-if": "3.0.0",
"gulp-minify-css": "1.2.4",
"gulp-plumber": "1.2.1",
"gulp-postcss": "9.0.1",
"gulp-sass": "5.1.0",
"gulp-sourcemaps": "3.0.0",
"gulp-strip-debug": "4.0.0",
"gulp-uglify": "3.0.2",
"husky": "8.0.3",
"kysely-codegen": "0.10.1",
"lint-staged": "13.2.3",
"nodemon": "3.0.1",
"postcss-cli": "10.1.0",
"postcss-preset-mantine": "1.8.0",
"postcss-simple-vars": "7.0.1",
"prop-types": "15.8.1",
"pug-lint": "2.7.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-responsive-masonry": "2.1.7",
"rimraf": "5.0.1",
"sass": "1.65.1",
"stylelint": "15.10.2",
"stylelint-config-standard-scss": "10.0.0",
"ts-node": "10.9.1",
"typescript": "5.1.6",
"webpack": "5.88.2",
"webpack-cli": "5.1.4"
},
"lint-staged": {
"js/app/**/*.js": "eslint --ext .js js/app/",
"js/react/**/*.jsx": "eslint -c ./js/react/.eslintrc",
"src/**/*.ts": "eslint -c .eslintrc --ext .ts src/",
"views/**/*.pug": "pug-lint",
"design/**/*.scss": "stylelint design/"
}
}