-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "hackathon-e-residents-starterkit",
"version": "0.0.1",
"description": "craft ai nodejs starter kit for the e-residents hackathon",
"author": {
"name": "craft ai",
"email": "[email protected]",
"url": "http://www.craft.ai/"
},
"homepage": "https://github.com/craft-ai/hackathon-e-residents-starterkit",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/craft-ai/hackathon-e-residents-starterkit.git"
},
"scripts": {
"build": "babel src --out-dir bin",
"prestart": "npm run build",
"start": "node bin/main.js",
"predev": "npm run build",
"dev": "cross-env NODE_ENV=development node bin/main.js"
},
"dependencies": {
"craft-ai": "0.0.5",
"cross-env": "1.0.7",
"isomorphic-fetch": "2.2.0",
"lodash": "3.10.1",
"lomath": "0.2.7",
"moment": "2.11.1",
"string-format": "0.5.0"
},
"devDependencies": {
"babel-cli": "6.1.18",
"babel-core": "6.2.1",
"babel-preset-es2015": "6.1.18",
"eslint": "1.9.0"
}
}