-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "profbit",
"version": "1.0.0",
"description": "Track your Coinbase profits!",
"main": "index.js",
"scripts": {
"test": "standard",
"lint": "standard --fix",
"start": "webpack -d --watch",
"build": "webpack -p",
"heroku-prebuild": "npm install --dev",
"heroku-postbuild": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshblum/profbit.git"
},
"author": "Josh Blum",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshblum/profbit/issues"
},
"homepage": "https://github.com/joshblum/profbit#readme",
"dependencies": {
"chart.js": "^2.7.1",
"ifvisible.js": "^1.0.6",
"mithril": "^1.1.6",
"moment": "^2.19.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.18.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.5.1",
"standard": "^10.0.3",
"webpack": "^3.9.1"
}
}