-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
{
"name": "strapyard",
"version": "1.0.0",
"description": "strapyard",
"scripts": {
"db:migration:create": "yarn knex migrate:make -x ts",
"db:migrate": "yarn ts-node ./node_modules/.bin/knex migrate:latest",
"db:drop": "ts-node scripts/dropDatabase.ts",
"db:create": "ts-node scripts/createDatabase.ts",
"db:reset": "yarn db:drop && yarn db:create && yarn db:migrate",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baublet/strapyard.git"
},
"author": "Ryan Poe",
"license": "MIT",
"bugs": {
"url": "https://github.com/baublet/strapyard/issues"
},
"homepage": "https://github.com/baublet/strapyard#README.md",
"dependencies": {
"@baublet/service-container": "^0.6.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/json-stringify-safe": "^5.0.0",
"apollo-server-core": "^3.6.7",
"apollo-server-express": "^3.6.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"knex": "^1.0.4",
"lodash.omit": "^4.5.0",
"pg": "^8.7.1",
"serverless-http": "^2.7.0",
"ulid": "^2.3.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^1.1.1",
"cron": "^1.8.2",
"pm2": "^5.2.0",
"prettier": "^2.5.1",
"ts-node": "^10.7.0",
"vite": "^2.7.1",
"vitest": "^0.8.4"
}
}