-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.17 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.17 KB
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
{
"name": "pickup-node-api",
"version": "0.18.0",
"description": "Node API for PlayPickUp",
"main": "index.js",
"repository": "git@github.com:PlayPickUp/pickup-node-api.git",
"author": "Eric Stout <ericwstout@gmail.com>",
"license": "unlicensed",
"private": true,
"engines": {
"node": "14.x",
"yarn": "1.x"
},
"scripts": {
"start": "nodemon -e ts,json,tsx -r dotenv/config ./src/index.ts",
"build": "yarn clean && yarn build:express",
"build:express": "node ./scripts/build.js",
"clean": "node ./scripts/clean.js",
"lint": "eslint .",
"tsc": "tsc -p ./tsconfig.json",
"test": "yarn lint && yarn tsc"
},
"dependencies": {
"@types/lodash": "^4.14.168",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-robots-txt": "^0.5.0",
"fs-extra": "^9.0.1",
"helmet": "^4.2.0",
"juice": "^7.0.0",
"knex": "^0.21.12",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.32",
"morgan": "^1.10.0",
"parcel-bundler": "^1.12.4",
"passport": "^0.4.1",
"passport-auth-token": "^1.0.1",
"passport-localapikey-update": "^0.6.0",
"pg": "^8.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"serve-favicon": "^2.5.0",
"short-unique-id": "^4.3.3"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/helmet": "^4.0.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.22",
"@types/passport": "^1.0.6",
"@types/passport-auth-token": "^1.0.0",
"@types/pg": "^7.14.6",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/serve-favicon": "^2.5.1",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"del": "^6.0.0",
"eslint": "^7.13.0",
"eslint-plugin-react": "^7.21.5",
"nodemon": "^2.0.6",
"source-map-support": "^0.5.19",
"ts-loader": "^6.2.2",
"ts-node": "^9.0.0",
"typescript": "^4.1.3"
}
}