This repository has been archived by the owner on May 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
120 lines (120 loc) · 3.26 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "testable-projects-fcc",
"version": "1.0.0",
"description": "",
"author": "freeCodeCamp <[email protected]> (https://freecodecamp.org)",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/freeCodeCamp/testable-projects-fcc.git"
},
"bugs": {
"url": "https://github.com/freeCodeCamp/testable-projects-fcc/issues"
},
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@babel/runtime": "^7.10.2",
"chai": "^4.2.0",
"marked": "^4.0.5",
"mocha": "^9.0.0"
},
"devDependencies": {
"@babel/core": "7.22.1",
"@babel/plugin-transform-runtime": "7.22.4",
"@babel/preset-env": "7.22.4",
"@babel/preset-react": "7.22.3",
"@babel/register": "7.21.0",
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@commitlint/travis-cli": "13.2.1",
"@freecodecamp/eslint-config": "2.0.2",
"@babel/eslint-parser": "7.21.8",
"babel-loader": "8.3.0",
"chromedriver": "94.0.0",
"commitizen": "4.3.0",
"css-loader": "3.6.0",
"cypress": "8.7.0",
"cz-customizable": "6.9.2",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prefer-object-spread": "1.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"geckodriver": "2.0.4",
"gulp": "4.0.2",
"gulp-babel": "8.0.0",
"gulp-concat": "2.6.1",
"gulp-sass": "5.1.0",
"gulp-watch": "5.0.1",
"html-loader": "1.3.2",
"husky": "7.0.4",
"jsdom": "17.0.0",
"lint-staged": "11.2.6",
"live-server": "1.2.1",
"node-sass": "6.0.1",
"npm-run-all": "4.1.5",
"prettier": "2.8.7",
"pug": "3.0.2",
"selenium-webdriver": "4.9.0",
"through2": "4.0.2",
"vinyl": "2.2.1",
"webpack": "4.46.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.13.2"
},
"scripts": {
"develop": "webpack-dev-server --https",
"commit": "git-cz",
"lint": "run-s lint:*",
"lint:js": "eslint .",
"lint:other": "yarn run prettier --check",
"format": "run-s format:*",
"format:js": "yarn run lint:js --fix",
"format:other": "yarn run prettier --write",
"prettier": "prettier \"**/*.{md,css,scss,yaml,yml,html}\"",
"pretest": "yarn lint",
"test": "mocha",
"cy:gen:fix": "node ./generate-fixture.js",
"cy:dev:test": "npm run cy:gen:fix && cypress run",
"cy:dev:watch": "npm run cy:gen:fix && cypress open",
"serve": "live-server build",
"start": "run-p start:* serve",
"start:projects-tests": "webpack --watch",
"start:projects": "gulp",
"build": "run-p build:*",
"build:projects-tests": "webpack --env production",
"build:projects": "gulp build"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "commitizen.config.js"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
],
"*.{md,css,scss,yaml,yml,html}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e",
"pre-commit": "lint-staged"
}
},
"mocha": {
"require": "@babel/register"
}
}