-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 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
{
"name": "ethchain",
"version": "1.0.0",
"description": "ethchain",
"main": "dist",
"scripts": {
"dev": "NODE_ENV=development nodemon -w src --exec \"babel-node src --presets es2015,stage-0\"",
"build": "babel src -s -D -d dist --presets es2015,stage-0",
"start": "NODE_ENV=production pm2 start dist",
"prestart": "npm run -s build",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/gmanroney/ethchain.git"
},
"author": "gerard moroney <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/gmanroney/ethchain/issues"
},
"homepage": "https://github.com/gmanroney/ethchain#readme",
"dependencies": {
"@angular-devkit/core": "0.0.22",
"@angular-devkit/schematics": "0.0.40",
"@angular/animations": "^5.0.5",
"@angular/cli": "^1.6.0",
"@angular/common": "^5.0.5",
"@angular/core": "^5.0.5",
"@angular/platform-browser": "^5.0.5",
"angular": "^1.6.7",
"body-parser": "^1.18.2",
"eslint": "^4.12.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-qunit": "^2.0.0",
"grunt-contrib-uglify": "^3.2.1",
"grunt-contrib-watch": "^1.0.0",
"moment": "^2.19.2",
"mongoose": "^4.13.5",
"nodemon": "^1.12.1",
"web3": "^1.0.0-beta.26"
},
"devDependencies": {
"@angular/cli": "^1.5.4",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0"
}
}