forked from sebcreme/craft-ai-starterkit-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 851 Bytes
/
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
{
"name": "craft-ai-starterkit-nodejs",
"version": "0.0.1",
"description": "craft ai nodejs starter kit",
"author": {
"name": "craft ai",
"email": "contact@craft.ai",
"url": "http://www.craft.ai/"
},
"homepage": "https://github.com/craft-ai/craft-ai-starterkit-nodejs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/craft-ai/craft-ai-starterkit-nodejs.git"
},
"scripts": {
"build": "babel src --out-dir bin",
"prestart": "npm run build",
"start": "node bin/main.js",
"predev": "npm run build",
"dev": "NODE_ENV=development node bin/main.js"
},
"dependencies": {
"craft-ai": "0.0.3",
"lodash": "3.10.1"
},
"devDependencies": {
"babel-cli": "6.1.18",
"babel-core": "6.2.1",
"babel-preset-es2015": "6.1.18",
"eslint": "1.9.0"
}
}