-
Notifications
You must be signed in to change notification settings - Fork 340
/
package.json
67 lines (67 loc) · 1.73 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
64
65
66
67
{
"name": "quill",
"description": "mean stack registration system",
"version": "1.0.0",
"private": "true",
"dependencies": {
"acorn": "^7.3.1",
"angular": "^1.8.0",
"angular-ui-router": "^1.0.26",
"async": "^2.6.3",
"bcrypt": "^3.0.8",
"body-parser": "^1.19.0",
"browserify": "^16.5.1",
"browserify-ngannotate": "^2.0.0",
"csv-express": "^1.2.2",
"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.5.1",
"json2csv": "^4.5.4",
"jsonwebtoken": "5.0.4",
"method-override": "^3.0.0",
"minimist": "^1.2.5",
"moment": "^2.27.0",
"mongoose": "^5.9.19",
"morgan": "^1.10.0",
"nodemailer": "^4.7.0",
"nodemailer-smtp-transport": "^2.7.4",
"request": "^2.88.2",
"showdown": "^1.9.1",
"sweetalert": "^2.1.2",
"underscore": "^1.10.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.3.0",
"gulp-concat": "^2.6.1",
"gulp-ng-annotate": "^2.1.0",
"gulp-nodemon": "^2.5.0",
"gulp-sass": "^4.1.0",
"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"
}
}