This repository was archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.3 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.3 KB
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
43
{
"name": "@origin/auth-utils",
"version": "0.1.0",
"description": "Helper functions and middlewares for auth",
"author": "Origin Protocol Inc",
"license": "MIT",
"main": "src/auth.js",
"scripts": {
"lint": "eslint '**/*.js' && npm run prettier:check",
"prettier": "prettier --write *.js \"**/*.js\"",
"prettier:check": "prettier -c *.js \"**/*.js\"",
"migrate": "sequelize db:migrate",
"test": "LOG_LEVEL=NONE NODE_ENV=test mocha -r @babel/register -r @babel/polyfill -t 10000 --exit test/**/*.js",
"test:debug": "LOG_LEVEL=DEBUG DEBUG=origin-auth-utils NODE_ENV=test mocha -r @babel/register -r @babel/polyfill -t 10000 --exit test/**/*.js"
},
"dependencies": {
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.15",
"logplease": "^1.2.15",
"per-env": "^1.0.2",
"pg": "^7.12.1",
"sequelize": "^5.20.0",
"sequelize-cli": "^5.5.0",
"web3-utils": "^1.2.2"
},
"devDependencies": {
"@babel/core": "7.16.7",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.16.8",
"@babel/register": "7.16.8",
"chai": "4.2.0",
"eslint": "6.8.0",
"express": "4.17.1",
"mocha": "7.0.1",
"nodemon": "2.0.2",
"prettier": "1.19.1",
"supertest": "4.0.2"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}