-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.02 KB
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
{
"private": true,
"name": "dalexa-skeleton",
"version": "1.0.0",
"description": "",
"license": "MIT",
"homepage": "http://github.com/dnode/dalexa-skeleton",
"author": {
"name": "Sharaal",
"email": "developer@dragonprojects.de",
"url": "http://dragonprojects.de"
},
"repository": {
"type": "git",
"url": "https://github.com/dnode/dalexa-skeleton.git"
},
"readmeFilename": "README.md",
"scripts": {
"build": "babel src -d build",
"develop": "nodemon src/web.js --exec babel-node",
"lint": "eslint src",
"postinstall": "npm run build",
"start": "node build/web.js"
},
"dependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-strict-mode": "^6.18.0",
"body-parser": "^1.16.0",
"dalexa": "^1.1.0",
"dcontrollers": "^1.0.1",
"dexpress": "^2.0.1",
"dotenv": "^4.0.0"
},
"devDependencies": {
"eslint": "^3.15.0",
"eslint-config-dnode": "^1.2.0",
"nodemon": "^1.11.0"
}
}