forked from fnordcredit/fnordcredit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.25 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "fnordcredit",
"version": "2.0.0",
"author": "silsha <hallo@silsha.me>",
"description": "SAP easy credit system",
"main": "lib/server.js",
"engines": {
"node": ">= 7.6"
},
"scripts": {
"build": "babel src --out-dir lib --copy-files",
"watch": "babel src --out-dir lib --watch --copy-files --source-maps",
"dev": "nodemon --watch lib --exec 'node lib/server.js'",
"lint": "eslint src --ext .jsx --ext .js",
"start": "node lib/server.js",
"test": "jest && npm run build && npm run start -- --test",
"travis": "flow && npm run newDatabase && npm test",
"newDatabase": "knex migrate:rollback && knex migrate:latest",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
],
"src/**/*.jsx": [
"eslint --fix",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "<rootDir>/src/testInit.js",
"roots": [
"src"
]
},
"dependencies": {
"bookshelf": "^0.14.2",
"engine.io": "^3.1.0",
"knex": "^0.16.3",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.2.1",
"koa-static": "^5.0.0",
"password-hash": "1.2.2",
"primus": "^7.0.2",
"primus-emit": "^1.0.0",
"sqlite3": "^4.0.0",
"uuid": "^3.1.0",
"winston": "^3.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-module-require": "^1.5.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"dotenv": "^6.2.0",
"eslint": "^5.12.1",
"eslint-config-marudor": "^5.0.0",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-header": "^2.0.0",
"eslint-plugin-prettier": "^3.0.1",
"flow-bin": "^0.92.1",
"flow-typed": "^2.1.5",
"husky": "^1.3.1",
"jest": "^24.0.0",
"lint-staged": "^8.1.0",
"nodemon": "^1.11.0",
"prettier": "^1.5.3"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/entropia/fnordcredit.git"
},
"bugs": {
"url": "https://github.com/entropia/fnordcredit/issues"
}
}