forked from aepstein/vumt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 3 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
73
74
75
76
{
"name": "vumt",
"version": "0.0.1",
"description": "Visitor Use Management Tool",
"main": "server.js",
"scripts": {
"client-timezones-update": "node ./util/buildClientTimezones.js",
"client-install": "npm install --prefix client",
"client-build": "npm run build --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"NODE_ENV=development npm run server\" \"NODE_ENV=development npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"migrate-status": "./node_modules/migrate-mongo/bin/migrate-mongo.js status -f './db/migrate-mongo-config.js'",
"migrate-up": "./node_modules/migrate-mongo/bin/migrate-mongo.js up -f './db/migrate-mongo-config.js'",
"migrate-down": "./node_modules/migrate-mongo/bin/migrate-mongo.js down -f './db/migrate-mongo-config.js'",
"test": "NODE_ENV=${NODE_ENV:-test} npm run test-unit && npm run test-cucumber",
"test-cucumber": "NODE_ENV=${NODE_ENV:-test} npm run client-build && npm run test-cucumber-nobuild",
"test-cucumber-nobuild": "NODE_ENV=${NODE_ENV:-test} npx cucumber-js",
"test-cucumber-wip": "NODE_ENV=${NODE_ENV:-test} npm run client-build && npm run test-cucumber-wip-nobuild",
"test-cucumber-wip-nobuild": "NODE_ENV=${NODE_ENV:-test} npx cucumber-js --tags @wip",
"test-unit": "NODE_ENV=${NODE_ENV:-test} mocha --timeout 10000 \"./test/*.js\" \"./test/api/*.js\" \"./test/models/*.js\"",
"test-unit-wip": "NODE_ENV=${NODE_ENV:-test} mocha --grep @wip --timeout 10000 \"./test/*.js\" \"./test/api/*.js\" \"./test/models/*.js\"",
"translate-parse": "i18next 'client/src/**/*.{js,hbs}' -c ./config/i18next-parser/i18next-parser.js"
},
"author": "Ari Epstein",
"license": "GPL-3.0-or-later",
"dependencies": {
"asciidoctor": "^2.2.1",
"bcryptjs": "^2.4.3",
"concurrently": "^5.3.0",
"config": "^3.3.3",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"i18n-iso-countries": "^6.5.0",
"i18next": "^19.8.7",
"i18next-express-middleware": "^2.0.0",
"i18next-node-fs-backend": "^2.1.3",
"jsonwebtoken": "^8.5.1",
"migrate-mongo": "^8.1.4",
"mongoose": "^5.11.15",
"nodemailer": "^6.4.17",
"phone": "^2.4.20",
"postal-codes-js": "^2.5.2",
"provinces": "^1.11.0"
},
"cssnano": {
"preset": [
"default",
{
"calc": false
}
]
},
"devDependencies": {
"@cucumber/cucumber": "^7.0.0",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"chai-datetime": "^1.7.0",
"chai-http": "^4.3.0",
"coveralls": "^3.1.0",
"factory-bot": "^6.2.0",
"http-shutdown": "^1.2.2",
"i18next-parser": "^3.6.0",
"mocha": "^8.2.1",
"mocha-lcov-reporter": "^1.3.0",
"moment": "^2.29.1",
"nodemailer-stub": "^1.2.2",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"puppeteer": "^7.0.1",
"timezone": "^1.0.23",
"timezones.json": "^1.5.2"
}
}