-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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
{
"name": "balanc",
"description": "Modern accounting (receipts, billings, pdf storage ...) toolchain and managed service",
"version": "0.2.2",
"main": "lib/index.js",
"scripts": {
"postinstall": "bower install",
"prepublish": "run-s build:lib build:browser",
"build:lib": "babel src --out-dir lib",
"build:browser": "webpack --config ./webpack.config.js",
"test": "cross-env NODE_ENV=test mocha --compilers js:babel-core/register",
"start": "cross-env BALANC_API=http://localhost:8008/v1 webpack-dev-server --config ./demo/webpack.config.js"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.16.4",
"pdfmake": "^0.1.18",
"reget": "^0.10.2"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-runtime": "^6.11.6",
"cross-env": "^3.1.3",
"eslint": "^3.8.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-lodash": "^2.1.3",
"eslint-plugin-react": "^6.4.1",
"json-loader": "^0.5.4",
"mocha": "^3.1.2",
"npm-run-all": "^3.1.1",
"script-loader": "^0.7.0",
"should": "^11.1.1",
"webpack": "^2.1.0-beta.25",
"webpack-dev-server": "^2.1.0-beta.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericfong/balanc.git"
},
"keywords": [
"cloud",
"database",
"sales",
"receipt",
"invoice",
"billing",
"inventory"
],
"author": "Eric Fong",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ericfong/balanc/issues"
},
"homepage": "https://github.com/ericfong/balanc#readme"
}