-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "school-info-system",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "babel-node server.js",
"build": "./node_modules/.bin/babel src -d lib",
"dev": "nodemon server.js --exec babel-node",
"eslint": "./node_modules/.bin/eslint server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d3mola/School-Information-System.git"
},
"author": "Ademola Ariya",
"license": "ISC",
"bugs": {
"url": "https://github.com/d3mola/School-Information-System/issues"
},
"homepage": "https://github.com/d3mola/School-Information-System#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"nodemon": "^1.12.1"
},
"dependencies": {
"body-parser": "^1.18.2",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"method-override": "^2.3.10",
"mongoose": "^4.12.3",
"morgan": "^1.9.0",
"pug": "^2.0.0-rc.4"
}
}