-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 842 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 842 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
34
35
{
"name": "pure-nodejs-api",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "server.mjs",
"scripts": {
"test": "vitest",
"dev": "node --watch src/server.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrevks/pure-nodejs-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/andrevks/pure-nodejs-api/issues"
},
"homepage": "https://github.com/andrevks/pure-nodejs-api#readme",
"devDependencies": {
"eslint": "^8.43.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"vitest": "^0.32.2"
},
"dependencies": {
"busboy": "^1.6.0",
"csv-parse": "^5.4.0",
"dotenv": "^16.3.1"
}
}