-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.3 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
{
"name": "flash",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc --build tsconfig.json",
"predev": "npm run build",
"lint": "eslint --ext .ts . && tsc --noEmit",
"dev": "NODE_ENV=development node dist/index.js",
"start": "NODE_ENV=production node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Crispin Koech <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/crispinkoech/flash.git"
},
"dependencies": {
"config": "^3.3.1",
"fastify": "^2.14.1",
"fastify-formbody": "^3.2.0",
"fastify-plugin": "^1.6.1",
"fastify-xml-body-parser": "^1.1.0",
"node-fetch": "^2.6.0",
"qs": "^6.9.4",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/config": "0.0.36",
"@types/node": "^14.0.13",
"@types/node-fetch": "^2.5.7",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"typescript": "^3.9.5"
}
}