forked from freeCodeCamp/freeCodeCamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.35 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
{
"name": "@freecodecamp/curriculum",
"version": "0.0.0-next.4",
"description": "freeCodeCamp's curriculum seed files",
"license": "(BSD-3-Clause AND CC-BY-SA-4.0)",
"private": true,
"engines": {
"node": ">= 14.0.0",
"npm": "^6.14.12"
},
"repository": {
"type": "git",
"url": "https://github.com/freeCodeCamp/freeCodeCamp.git"
},
"bugs": {
"url": "https://github.com/freeCodeCamp/freeCodeCamp/issues"
},
"homepage": "https://github.com/freeCodeCamp/freeCodeCamp#readme",
"author": "freeCodeCamp <[email protected]>",
"scripts": {
"build": "node ../tools/scripts/build/build-curriculum.js",
"create-empty-steps": "cross-env CALLING_DIR=$INIT_CWD node ../tools/challenge-helper-scripts/create-empty-steps",
"create-next-step": "cross-env CALLING_DIR=$INIT_CWD node ../tools/challenge-helper-scripts/create-next-step",
"create-step-between": "cross-env CALLING_DIR=$INIT_CWD node ../tools/challenge-helper-scripts/create-step-between",
"delete-step": "cross-env CALLING_DIR=$INIT_CWD node ../tools/challenge-helper-scripts/delete-step",
"lint": "gulp lint",
"reorder-steps": "cross-env CALLING_DIR=$INIT_CWD node ../tools/challenge-helper-scripts/reorder-steps",
"test": "mocha --delay --exit --reporter progress --bail",
"pretest:full-output": "npm run pretest",
"test:full-output": "cross-env FULL_OUTPUT=true mocha --delay --reporter progress"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.14.7",
"@babel/preset-typescript": "7.14.5",
"@babel/register": "7.14.5",
"acorn": "8.4.0",
"acorn-jsx": "5.3.1",
"babel-plugin-dynamic-import-node": "2.3.3",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"chai": "4.3.4",
"cross-env": "7.0.3",
"css": "3.0.0",
"gulp": "4.0.2",
"invariant": "2.2.4",
"joi": "17.4.0",
"joi-objectid": "3.0.1",
"js-yaml": "4.0.0",
"jsdom": "16.6.0",
"live-server": "1.2.1",
"lodash": "4.17.21",
"mocha": "8.4.0",
"mock-require": "3.0.3",
"puppeteer": "9.1.1",
"readdirp": "3.6.0",
"rehype": "11.0.0",
"string-similarity": "4.0.4",
"unist-util-visit": "2.0.3",
"vfile": "4.2.1"
}
}