-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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
{
"name": "algorithmia-dev-center",
"version": "1.0.0",
"private": true,
"description": "The Algorithmia Developer Resource Center",
"author": "Algorithmia <[email protected]>",
"homepage": "https://algorithmia.com/",
"license": "The MIT License (MIT)",
"scripts": {
"dev": "yarn reset:cache && docker compose up",
"setup": "rm -rf vendor && docker run -v $PWD:/jekyll algorithmiahq/dev-center:local-dev-jekyll-server bundle install",
"test": "concurrently \"yarn dev\" \"sleep 1m yarn test:run\"",
"test:run": "cross-env NODE_ENV=production ./node_modules/.bin/mocha ./server/index.spec.js --timeout=10000",
"reset:cache": "rm -rf .jekyll-cache && rm -rf .jekyll-metadata && rm -rf _site"
},
"devDependencies": {
"axios": "^0.21.2",
"chai": "^4.3.4",
"http-proxy-middleware": "^0.20.0",
"mocha": "^6.2.0",
"shelljs": "^0.8.5",
"stylelint": "^13.12.0",
"stylelint-config-sass-guidelines": "^8.0.0"
},
"dependencies": {
"bunyan": "^1.8.15",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"prom-client": "^13.1.0",
"redoc": "^2.0.0-rc.57",
"request-stats": "^3.0.0"
},
"engines": {
"node": "17.3",
"yarn": ">=1.22.4"
},
"resolutions": {
"mkdirp": "0.5.3",
"minimist": "^1.2.6"
}
}