-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.11 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
68
69
70
71
72
{
"name": "fem-registry",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test:start": "NODE_ENV=cypress npm run-script start",
"test:e2e": "cypress run",
"test": "start-server-and-test test:start http://localhost:3000 test:e2e && npm run-script example-data:teardown",
"example-data:setup": "node src/db/example-data/setup-example-data.js",
"example-data:teardown": "node src/db/example-data/teardown-example-data.js"
},
"nodemonConfig": {
"colours": true,
"ext": "js json pug scss"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"chalk": "^5.0.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"csurf": "^1.11.0",
"debug": "^4.3.3",
"email-templates": "^8.0.8",
"express": "^4.17.2",
"express-fileupload": "^1.3.1",
"express-rate-limit": "^6.2.1",
"express-session": "^1.17.2",
"express-session-sequelize": "^2.3.0",
"express-slow-down": "^1.4.0",
"http-errors": "^2.0.0",
"inquirer": "^8.2.0",
"inquirer-file-path": "^1.0.1",
"mariadb": "^2.5.5",
"markdown-it": "^12.3.2",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"node-sass-middleware": "^0.11.0",
"nodemailer": "^6.7.2",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"passport-local-authenticate": "^1.2.0",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"pm2": "^5.1.2",
"prettier": "^2.5.1",
"pug": "^3.0.2",
"sequelize": "^6.16.1",
"sqlite3": "^5.0.2",
"trailing-slash": "^2.0.2",
"uikit": "^3.11.1",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/chalk": "^2.2.0",
"@types/cypress": "^1.1.3",
"@types/email-templates": "^8.0.4",
"@types/express": "^4.17.13",
"@types/js-beautify": "^1.13.3",
"@types/node": "^17.0.17",
"@types/passport": "^1.0.7",
"@types/passport-local": "^1.0.34",
"@types/prettier": "^2.4.4",
"@types/sequelize": "^4.28.11",
"@types/sqlite3": "^3.1.8",
"cypress": "^9.4.1",
"start-server-and-test": "^1.14.0",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}