This repository has been archived by the owner on Dec 13, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
{
"name": "org.botblock.website",
"description": "Website & API for BotBlock.org",
"version": "1.0.0",
"main": "src/main.js",
"scripts": {
"start": "node .",
"dev": "nodemon .",
"test": "mocha",
"lint:editorconfig": "editorconfig-checker",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint . --fix",
"css:build": "node-sass --omit-source-map-url src/SCSS/style.scss src/Assets/css/style.min.css --output-style compressed",
"css:watch": "npm run css:build -- --watch",
"db:migrate": "knex migrate:latest",
"db:migrate:rollback": "knex migrate:rollback",
"db:seed": "knex seed:run",
"db:seed:export": "node db/seedsExport.js",
"deploy:staging": "node deploy/staging.js",
"deploy:staging:execute": "node deploy/src/execute.js staging.botblock.org",
"deploy:production": "node deploy/production.js",
"deploy:production:execute": "node deploy/src/execute.js botblock.org",
"ci:setup": "node ci/setup.js",
"ci:run": "node ci/run.js"
},
"author": {
"name": "BotBlock Team"
},
"dependencies": {
"ansi-html": "0.0.7",
"axios": "^0.19.0",
"bulma-tooltip": "^2.0.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"codemirror": "^5.49.2",
"cookie-parser": "^1.4.4",
"cookie-session": "^1.3.3",
"cors": "^2.8.5",
"editorconfig-checker": "^3.0.3",
"eslint": "^6.5.1",
"express": "^4.17.1",
"express-minify": "^1.0.0",
"i18n": "^0.8.3",
"kill-port": "^1.6.0",
"knex": "^0.19.4",
"lighthouse": "^5.2.0",
"markdown-it": "^9.0.1",
"mocha": "^6.1.4",
"mysql": "^2.17.1",
"node-schedule": "^1.3.2",
"pug": "^2.0.4",
"xmlbuilder": "^13.0.2",
"yaml": "^1.7.0"
},
"devDependencies": {
"bulma": "^0.7.5",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1"
}
}