forked from circleci/circleci-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.6 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
{
"name": "circleci-docs",
"version": "1.0.0",
"description": "This is the public repository for <https://circleci.com/docs/>, a static website generated by [Jekyll](https://jekyllrb.com/). If you find any errors in our docs or have suggestions, please follow our [Contributing Guide](CONTRIBUTING.md) to submit an issue or pull request.",
"main": "index.js",
"engines": {
"node": "14.17.3"
},
"scripts": {
"lint": "yarn run eslint src src-api/source/javascripts --ext .js",
"prettier": "prettier --write ./src/**/*.js ./src/*.js ./src-api/source/javascripts/app/*.js ./src-api/source/javascripts/*.js",
"postinstall": "./scripts/postinstall.sh",
"datadog-synthetics-ci": "yarn datadog-ci synthetics run-tests -f ./.datadog/development.synthetics.json --tunnel",
"datadog-synthetics-preview": "node ./scripts/datadog-synthetics-preview.js && yarn datadog-ci synthetics run-tests -f ./.datadog/preview.synthetics.json",
"datadog-synthetics-prod": "yarn datadog-ci synthetics run-tests -f ./.datadog/production.synthetics.json",
"jekyll-dev": "bundle exec jekyll serve -s jekyll --incremental --host=0.0.0.0",
"webpack-dev": "webpack --watch --mode=development",
"dev": "concurrently \"docker-compose up -d https\" \"yarn webpack-dev\" \"yarn jekyll-dev\"",
"dev-clean": "bundle exec jekyll clean && rm jekyll/.jekyll-metadata",
"start": "./scripts/start.sh",
"clean": "docker exec -it jekyll bundle exec jekyll clean",
"cypress:open": "cypress open",
"test:e2e:run": "yarn wait-on 'https://ui.circleci.com/docs/2.0' && yarn cypress run",
"stop": "docker-compose down",
"prod": "yarn webpack-prod && docker-compose up",
"webpack-prod": "NODE_ENV=production webpack --mode=production",
"webpack-watch": "webpack --watch --mode=development",
"test": "jest --runInBand",
"test:ci": "yarn test --coverage",
"minimize-img": "bash ./scripts/process-images.sh _site/${JEKYLL_BASENAME}/assets/img"
},
"repository": {
"type": "git",
"url": "git://github.com/circleci/circleci-docs.git"
},
"license": "MIT",
"browserslist": [
"> 0.5% in my stats"
],
"dependencies": {
"@datadog/browser-rum": "^3.6.13",
"@optimizely/optimizely-sdk": "4.6.2",
"@popperjs/core": "^2.10.1",
"jquery": "3.6.0",
"js-cookie": "2.2.1",
"lodash.debounce": "4.0.8",
"lodash.get": "4.4.2",
"prismjs": "^1.26.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "7.15.6",
"@datadog/datadog-ci": "^0.17.8",
"babel-loader": "8.0.2",
"babel-plugin-prismjs": "^2.1.0",
"babel-plugin-wildcard": "^7.0.0",
"concurrently": "^7.0.0",
"css-loader": "^6.6.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"cypress": "^9.2.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^4.0.0",
"imagemin-cli": "^7.0.0",
"imagemin-pngquant": "^9.0.2",
"jest": "^27.3.1",
"markdownlint-cli2": "0.0.15",
"markdownlint-cli2-formatter-json": "0.0.4",
"markdownlint-rule-header-id": "0.0.3",
"mini-css-extract-plugin": "^2.4.3",
"prettier": "^2.4.1",
"sass": "^1.43.2",
"sass-loader": "^12.2.0",
"serve": "^13.0.2",
"slugify": "^1.6.5",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.2.5",
"uglifyjs-webpack-plugin": "1.1.2",
"wait-on": "^6.0.0",
"webpack": "5.59.0",
"webpack-cli": "4.9.1",
"yamljs": "^0.3.0"
}
}