-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.28 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
41
42
43
44
{
"name": "nasijona",
"version": "1.0.0",
"description": "A platform for Nazarene artisans to promote and sell their crafts.",
"main": "server.js",
"scripts": {
"start": "npm run sass && node src/start.js",
"dev": "nodemon src/start.js",
"test": "echo \"Error: no test specified\" && exit 1",
"sass": "./node_modules/.bin/node-sass --source-map true ./public/style/sass/main.scss ./public/style/style.css",
"prepush": "npm run lint",
"lint": "./node_modules/.bin/eslint **.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FACN1/Nasijona.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACN1/Nasijona/issues"
},
"homepage": "https://github.com/FACN1/Nasijona#readme",
"dependencies": {
"aws-sdk": "^2.60.0",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"env2": "^2.2.0",
"express": "^4.15.3",
"express-handlebars": "^3.0.0",
"jsonwebtoken": "^7.4.1",
"mongodb": "^2.2.26",
"node-sass": "^4.5.3"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"husky": "^0.13.3"
}
}