This repository has been archived by the owner on Jul 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
/
package.json
49 lines (49 loc) · 1.94 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
{
"name": "coding-train-website",
"version": "0.0.1",
"description": "Coding Train Website",
"main": "none",
"devDependencies": {
"dotenv": "^16.0.0",
"eslint": "^8.8.0",
"eslint-config-p5js": "^1.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"octocat": "^1.2.1",
"prettier": "^1.19.1",
"replace-in-file": "^6.3.2",
"yaml-front-matter": "^4.1.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test-html": "bundle exec htmlproofer ./_site --assume-extension --check-html --disable-external --url-ignore '/#.*/'",
"lint": "npm run lint-cc && npm run lint-cabana && npm run lint-beginners && npm run lint-tutorials && npm run lint-courses",
"lint-cc": "./node_modules/.bin/eslint ./CodingChallenges/",
"lint-cabana": "./node_modules/.bin/eslint ./challenges/coding-in-the-cabana/",
"lint-beginners": "./node_modules/.bin/eslint ./beginners",
"lint-tutorials": "./node_modules/.bin/eslint ./Tutorials/",
"lint-courses": "./node_modules/.bin/eslint ./Courses/",
"lint-fix": "npm run lint-cc-fix && npm run lint-cabana-fix && npm run lint-tutorials-fix && npm run lint-courses-fix",
"lint-cc-fix": "./node_modules/.bin/eslint ./CodingChallenges/ --fix",
"lint-cabana-fix": "./node_modules/.bin/eslint ./CodingInTheCabana/ --fix",
"lint-tutorials-fix": "./node_modules/.bin/eslint ./Tutorials/ --fix",
"lint-courses-fix": "./node_modules/.bin/eslint ./Courses/ --fix",
"yt-descriptions": "node ./_scripts/generate-youtube-descriptions.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodingTrain/website.git"
},
"keywords": [
"coding",
"train",
"tutorials",
"beginner"
],
"author": "The Coding Train Community",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodingTrain/website/issues"
},
"homepage": "https://github.com/CodingTrain/website#readme"
}