-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.41 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
{
"name": "steemia-ipfs",
"version": "0.0.0",
"description": "Steemia IPFS Node",
"scripts": {
"dev": "nodemon ./bin/www --exec babel-node --presets es2015,stage-2",
"test": "mocha --compilers js:babel-register -R spec ./src/test"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"dotenv": "^5.0.1",
"dotenv-expand": "^4.2.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"express-validator": "^5.2.0",
"http-errors": "^1.6.3",
"ipfs-api": "^21.0.0",
"jest": "^22.4.3",
"mocha": "^5.1.1",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"normalize-port": "^1.0.0",
"path": "^0.12.7"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"babel": {
"presets": [
"stage-3",
"latest"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"supertest": "^3.1.0"
}
}