forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 832 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 832 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
{
"name": "database-setup",
"version": "1.0.0",
"description": "creates the database according to a setup file",
"main": "index.js",
"scripts": {
"lint": "eslint",
"start": "node --dns-result-order=ipv4first --experimental-json-modules --experimental-vm-modules index.js"
},
"keywords": [],
"author": "Mike Williamson",
"license": "MIT",
"dependencies": {
"arango-tools": "^0.6.0",
"arangojs": "^8.8.1",
"dotenv-safe": "^8.2.0",
"json-placeholder-replacer": "^1.0.35"
},
"devDependencies": {
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"prettier": "^2.6.0"
}
}