forked from stremann/chainpro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.68 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
{
"name": "chainpro",
"version": "0.1.0",
"description": "Chainpro",
"main": "src/index.js",
"scripts": {
"clean": "rimraf ./dist",
"lint": "eslint ./src",
"start": "node dist/index.js",
"dev": "node dev.js",
"build": "babel -d ./dist ./src -s",
"lint-staged": "lint-staged",
"prepublish": "npm run clean && npm run lint && npm run build"
},
"pre-commit": "lint-staged",
"repository": {
"type": "git",
"url": "git+https://github.com/stremann/chainpro.git"
},
"keywords": [
"chainpro",
"blockchain",
"database",
"maining",
"bitcoin"
],
"author": "Roman Stremedlovskyi <[email protected]> (https://github.com/stremann)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stremann/chainpro/issues"
},
"homepage": "https://github.com/stremann/chainpro#readme",
"eslintConfig": {
"root": true,
"extends": [
"airbnb-base",
"prettier"
],
"rules": {
"no-console": 0
},
"env": {
"node": true
}
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"lint-staged": {
"src/*.js": "eslint"
},
"dependencies": {
"body-parser": "^1.18.2",
"crypto-js": "^3.1.9-1",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"ws": "^3.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"lint-staged": "^4.2.3",
"pre-commit": "^1.2.2"
}
}