-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 866 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 866 Bytes
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
{
"name": "erp-example",
"version": "1.0.0",
"description": "",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap test/**/*.test.js",
"start": "fastify start -l info app.js",
"dev": "fastify start -w -l info -P --ignore-watch='node_modules docker .git .idea' app.js",
"dev_nolog": "fastify start -w -P --ignore-watch='node_modules docker .git .idea' app.js",
"migrate": "node cli/migrate"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@verycrazydog/mysql-parser": "^1.2.0",
"fastify": "^3.3.0",
"fastify-autoload": "^3.0.9",
"fastify-cli": "^2.2.0",
"fastify-formbody": "^5.0.0",
"fastify-plugin": "^2.3.3",
"moment": "^2.27.0",
"mysql2": "^2.1.0",
"require-sql": "^1.0.0"
},
"devDependencies": {
"tap": "^14.10.8"
}
}