-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 998 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
32
33
34
35
36
{
"name": "snipsnap-importer",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:import:diff": "node -r dotenv-safe/config src/importDiff.js",
"dev:import:all": "node -r dotenv-safe/config src/importAll.js",
"dev:validate": "node -r dotenv-safe/config src/validate.js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix"
},
"bin": "./src/cli.js",
"author": "",
"license": "ISC",
"dependencies": {
"crypto-js": "^3.1.9-1",
"dotenv-safe": "^8.2.0",
"lodash": "^4.17.15",
"pg": "^7.15.1",
"pg-hstore": "^2.3.3",
"pino": "^5.15.0",
"pino-pretty": "^3.5.0",
"sequelize": "^5.21.3",
"yup": "^0.28.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"jest": "^24.9.0"
}
}