-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 3.04 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
77
78
{
"name": "caninclude",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:base": "rm -rf ./testing/output/*.png && NODE_ENV=test HEADLESS=true codeceptjs run --steps",
"test:only": "npm run test:base -- --grep=@only",
"test": "npm run test:base -- --grep='(?=.*)^(?!.*@skip)'",
"test:ci": "rm -rf ./testing/output/*.png && NODE_ENV=test HEADLESS=true codeceptjs run --reporter mocha-junit-reporter --steps --grep='(?=.*)^(?!.*@skip)'",
"spec:fix": "node specfix && node makeIndex",
"crawl:check": "node speccheck.js",
"crawl": "node crawl && node specfix && node makeIndex && npm run crawl:check",
"start": "pm2 start ecosystem.config.js --env production --no-daemon",
"dev": "nodemon ./server.js",
"glitch:pack": "node ./scripts/glitch",
"glitch:unpack": "unzip -o glitch_release_*.zip -d . && rm glitch_release_*.zip && refresh",
"glitch:apply": "refresh",
"glitch:wget": "node ./scripts/download",
"gen:invite": "node ./scripts/invite --",
"pm2:gen:config": "pm2 ecosystem",
"pm2:stop": "pm2 stop ecosystem.config.js",
"pm2:restart": "pm2 restart ecosystem.config.js --env production",
"pm2:reload": "pm2 reload ecosystem.config.js --env production",
"pm2:mon": "pm2 monit",
"pm2:kill": "pm2 kill",
"pm2:logs": "pm2 logs webapp --lines 100",
"pm2:log:rotate": "pm2 install pm2-logrotate",
"pm2:flush": "pm2 flush",
"fix:likes:user": "node ./scripts/fixLikesUserData",
"html:check": "node ./scripts/htmlcheck",
"serve:lhci": "NODE_ENV=production node server.js",
"codeceptjs": "codeceptjs run --steps",
"codeceptjs:headless": "HEADLESS=true codeceptjs run --steps",
"codeceptjs:ui": "codecept-ui --app",
"cc:tools": "codeceptjs --",
"cc:gt": "codeceptjs gt",
"cc:def": "codeceptjs def"
},
"keywords": [],
"author": "",
"engines": {
"node": "14.x"
},
"license": "ISC",
"dependencies": {
"archiver": "^4.0.1",
"clean-css": "^4.2.3",
"cookie-session": "^1.4.0",
"cron": "^1.8.2",
"express": "^4.17.1",
"express-validator": "^6.4.1",
"htm": "^3.0.4",
"html-validator": "^5.1.12",
"md5": "^2.2.1",
"moment": "^2.29.1",
"nodemon": "^2.0.3",
"pm2": "^5.1.0",
"preact": "^10.4.1",
"preact-render-to-string": "^5.1.6",
"puppeteer": "^10.4.0",
"serve-favicon": "^2.5.0",
"sqlite3": "^5.0.2",
"uuid": "^8.0.0"
},
"devDependencies": {
"@codeceptjs/configure": "^0.6.2",
"codeceptjs": "^3.1.3",
"codeceptjs-resemblehelper": "^1.9.4",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-codeceptjs": "^1.3.0",
"eslint-plugin-import": "^2.22.1",
"expect": "^26.6.2",
"faker": "^5.1.0",
"mocha-junit-reporter": "^2.0.0"
}
}