-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·34 lines (34 loc) · 1.07 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
{
"name": "dotapp-framework",
"description": "A light-weight, thin and full-featured nodejs framework built on express.js",
"author": "Basem Khirat",
"license": "MIT",
"main": "app.js",
"scripts": {
"dev": "nodemon",
"start": "babel-node server.js",
"test": "export APP_CONSOLE=true && ./node_modules/.bin/mocha tests/**/*.js --require @babel/register --exit"
},
"dependencies": {
"dotapp": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/node": "^7.22.19",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-classes": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"babel-plugin-root-import": "^6.6.0",
"chai": "^4.3.10",
"core-js": "^3.33.3",
"faker": "^6.6.6",
"mocha": "^10.2.0",
"nodemon": "^3.0.2",
"supertest": "^6.3.3"
},
"repository": {
"type": "git",
"url": "git://github.com/basemkhirat/dotapp-framework.git"
}
}