forked from cofacts/rumors-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 874 Bytes
/
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
{
"name": "rumors-db",
"version": "1.0.9",
"description": "Cofacts Database schema & scripts",
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"schema": "babel-node db/loadSchema.js",
"reload": "babel-node db/reloadSchema.js",
"clear": "babel-node db/clear.js",
"seed": "babel-node db/loadSeed.js",
"test": "NODE_ENV=test npm run clear && NODE_ENV=test npm run schema"
},
"dependencies": {
"babel-cli": "^6.18.0",
"babel-preset-env": "^1.1.8",
"babel-preset-stage-3": "^6.17.0",
"dotenv": "^6.0.0",
"elasticsearch": "^15.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^5.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"prettier": "^1.8.2"
}
}