forked from techx/quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.63 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "quill",
"description": "mean stack registration system",
"version": "1.0.0",
"private": "true",
"dependencies": {
"angular": "^1.7.9",
"angular-ui-router": "^1.0.24",
"async": "^2.6.3",
"bcrypt": "^3.0.7",
"body-parser": "^1.19.0",
"browserify": "^16.5.0",
"browserify-ngannotate": "^2.0.0",
"dotenv": "^6.2.0",
"email-templates": "^5.1.0",
"express": "^4.17.1",
"gulp-buffer": "0.0.2",
"gulp-tap": "^1.0.1",
"jquery": "^3.4.1",
"jsonwebtoken": "5.0.4",
"method-override": "^3.0.0",
"moment": "^2.24.0",
"mongoose": "^5.8.10",
"morgan": "^1.9.1",
"nodemailer": "^4.7.0",
"nodemailer-smtp-transport": "^2.7.4",
"request": "^2.88.0",
"showdown": "^1.9.1",
"sweetalert": "^2.1.2",
"underscore": "^1.9.2",
"validator": "^10.11.0",
"vinyl-source-stream": "^2.0.0"
},
"scripts": {
"mongo": "mongod --dbpath db",
"start": "node app.js",
"dev": "nodemon app.js",
"watch": "gulp server",
"prod": "gulp build && node app.js",
"config": "cp .env.config .env",
"test": "jest --forceExit",
"test:accessibility": "pa11y-ci",
"eslint": "./node_modules/.bin/eslint './**/*.js'"
},
"devDependencies": {
"eslint": "^6.8.0",
"gulp": "^3.9.1",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-ng-annotate": "^2.1.0",
"gulp-nodemon": "^2.4.2",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"pa11y-ci": "^2.3.0",
"supertest": "^4.0.2"
},
"engines": {
"node": "10.17.0"
}
}