-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 3.28 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "MoneyBadger",
"version": "0.3.2",
"description": "",
"main": "index.js",
"scripts": {
"build": "run-p build:**",
"build:server": "BABEL_ENV=server babel lib --out-dir dist",
"build:client": "browserify -t [babelify --presets @babel/preset-env --presets @babel/preset-react] -p [css-modulesify --global -o client/public/bundle.css] -o client/public/bundle.js client/lib/main.jsx",
"fix:lint": "npm run test:lint -- --fix",
"watch": "run-p watch:**",
"watch:server": "BABEL_ENV=server babel lib --watch --out-dir dist",
"watch:client": "watchify -v -t [babelify --presets @babel/preset-env --presets @babel/preset-react] -p [css-modulesify --global -o client/public/bundle.css] -o client/public/bundle.js client/lib/main.jsx",
"start": "node dist/finance.js",
"test": "npm run test:lint",
"test:tdd": "karma start --auto-watch --no-single-run",
"test:lint": "eslint ./client ./lib --ext .js --ext .jsx --ignore-path .gitignore --ignore-pattern dist --ignore-pattern public --cache"
},
"pre-commit": [],
"author": "Matt Fletcher",
"license": "ISC",
"engines": {
"node": ">=5.9.1",
"npm": ">=3.10.3"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"async": "^2.0.1",
"bluebird": "^3.4.1",
"couchbase": "^3.2.3",
"csvtojson": "^1.0.0",
"express": "^4.16.4",
"glob": "^7.0.5",
"graceful-fs": "^4.1.5",
"inquirer": "^1.1.2",
"lodash": "^4.17.19",
"meow": "^3.7.0",
"moment": "^2.23.0",
"node-emoji": "^1.3.1",
"node-jsx": "^0.13.3",
"npm-run-all": "^3.1.0",
"numeral": "^2.0.4",
"react": "^16.8.6",
"react-addons-shallow-compare": "^15.3.0",
"react-addons-update": "^15.6.2",
"react-dom": "^16.8.6",
"react-dropzone": "^3.6.0",
"react-dygraphs": "[email protected]:MaffooBristol/react-dygraphs.git",
"react-dygraphs-react16": "^0.1.2",
"socket.io": "^1.4.8",
"socketio-file-upload": "^0.4.7",
"text-table": "^0.2.0",
"vorpal": "^1.11.4",
"walk": "^2.3.9"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^6.3.7",
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.10.6",
"babelify": "^10.0.0",
"brfs": "^1.4.3",
"browserify": "^16.2.3",
"browserify-css": "^0.14.0",
"chalk": "^1.1.3",
"coveralls": "^2.11.12",
"css-modulesify": "^0.25.1",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^11.2.0",
"eslint-config-standard": "^6.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-destructuring": "^2.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"farmhash": "^2.1.0",
"ignore-styles": "^5.0.1",
"monitor": "^0.6.10",
"pre-commit": "^1.1.3",
"styled-components": "^4.3.2",
"stylify": "^1.3.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.11.1"
},
"browserify": {
"transform": [
[
"brfs",
{
"ignore": "\\.(json|css|styl|sass|scss)$"
}
]
]
}
}