This repository has been archived by the owner on Jan 25, 2023. It is now read-only.
forked from NCCE/teachcomputing.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.66 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
79
80
81
82
83
{
"name": "ncce-project",
"engines": {
"node": "16.x",
"yarn": "3.2.x"
},
"private": true,
"dependencies": {
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.13.14",
"@rails/actiontext": "^6.1.3",
"@rails/activestorage": "^6.1.3",
"@rails/ujs": "^6.1.3",
"@rails/webpacker": "^5.4.3",
"ansi-html-community": "0.0.8",
"channels": "^0.0.4",
"cookieconsent": "^3.1.0",
"core-js": "^3.12.0",
"dotenv-webpack": "^7.0.2",
"flatpickr": "^4.6.9",
"govuk-frontend": "^3.12.0",
"is-svg": "4.3.1",
"node-sass-glob-importer": "^5.3.2",
"sass": "^1.32.12",
"sass-loader": "^10.1.1",
"stimulus": "^2.0",
"trix": "^1.3",
"turbolinks": "^5.2.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"yargs-parser": "^20.2"
},
"devDependencies": {
"eslint": "^7.25",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4",
"install": "^0.13.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"speed-measure-webpack-plugin": "^1.5.0",
"stylelint": "^13.13",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.19",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"setup": "sh ./scripts/setup.sh",
"start": "sh ./scripts/docker-start.sh",
"stop": "sh ./scripts/docker-stop.sh",
"reset-db": "sh ./scripts/reset-db.sh",
"start-tunnel": "ssh -fCND 8889 -L8888:127.0.0.1:8888 -S /tmp/.ssh_stem_proxy -M proxy",
"stop-tunnel": "ssh -S /tmp/.ssh_stem_proxy -O exit proxy",
"logs": "docker compose logs --tail 500",
"web": "docker compose run --rm --no-deps web",
"bundle": "docker compose run --rm --no-deps web bundle",
"exec": "docker compose run --rm --no-deps web bundle exec",
"bundle-install": "yarn run bundle install && docker compose restart web && yarn start",
"bundle-update": "yarn run bundle update && docker compose restart web && yarn start",
"console": "yarn run web rails c",
"shell": "yarn run web sh",
"test": "yarn run exec rspec",
"test-debug": "docker-compose exec web rdebug-ide --host 0.0.0.0 --port 1235 ./bin/rspec",
"guard": "yarn run bundle exec guard"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.scss": [
"stylelint --fix --syntax=scss",
"git add"
]
},
"pre-commit": "lint:staged",
"resolutions": {
"ansi-html": "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41"
},
"packageManager": "yarn@3.2.4"
}