This repository has been archived by the owner on Mar 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.33 KB
/
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
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
83
{
"name": "fnordcredit",
"version": "1.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.11.0",
"engine.io": "^3.2.0",
"knex": "^0.13.0",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"password-hash": "1.2.2",
"primus": "^7.2.2",
"primus-emit": "^1.0.0",
"sqlite3": "^4.0.1",
"uuid": "^3.3.2",
"winston": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"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.26.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"eslint": "^5.1.0",
"eslint-config-joblift": "^2.0.0",
"eslint-config-marudor": "^5.0.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-sort-imports-es6-autofix": "^0.3.0",
"flow-bin": "^0.76.0",
"husky": "^0.14.3",
"jest": "^23.4.1",
"lint-staged": "^7.2.0",
"nodemon": "^1.18.2",
"prettier": "^1.13.7"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/entropia/fnordcredit.git"
},
"bugs": {
"url": "https://github.com/entropia/fnordcredit/issues"
}
}