mon-entreprise/api/package.json

60 lines
1.9 KiB
JSON
Raw Normal View History

2022-05-16 12:29:59 +00:00
{
"name": "api",
"version": "0.0.0",
"description": "API du site mon-entreprise",
2022-06-02 13:28:08 +00:00
"repository": {
"type": "git",
"url": "https://github.com/betagouv/mon-entreprise.git",
"directory": "api"
},
"license": "MIT",
2022-05-16 12:29:59 +00:00
"type": "module",
2022-05-25 15:48:28 +00:00
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
2022-05-16 12:29:59 +00:00
"scripts": {
2022-06-02 13:28:08 +00:00
"test": "run validate && vitest",
2022-05-25 15:48:28 +00:00
"test:type": "tsc --noEmit",
2022-05-16 12:29:59 +00:00
"validate": "yarn swagger-cli validate ./source/openapi.yaml",
2022-05-25 15:48:28 +00:00
"postinstall": "yarn build:openapi",
"start": "yarn clean && yarn build:watch & wait-on ./dist && nodemon -d 1s ./dist/",
"start:prod": "NODE_ENV=production nodemon -d 500ms -w ./dist/index.js -x 'node ./dist/index.js || touch ./dist/index.js'",
2022-05-25 15:48:28 +00:00
"build": "yarn build:openapi && yarn build:ts",
"build:watch": "yarn build:openapi:watch & yarn wait:openapi && yarn build:ts:watch",
"build:ts": "tsc",
"build:ts:watch": "yarn build:ts -w --preserveWatchOutput",
2022-05-16 12:29:59 +00:00
"wait:openapi": "wait-on ./source/openapi.json",
2022-05-25 15:48:28 +00:00
"build:openapi": "yarn run swagger-cli bundle ./source/openapi.yaml -o ./source/openapi.json",
2022-05-17 12:18:32 +00:00
"build:openapi:watch": "nodemon -d 500ms -w ./source/openapi.yaml -x \"yarn build:openapi\"",
2022-06-02 13:28:08 +00:00
"clean": "rimraf dist ./source/openapi.json"
2022-05-16 12:29:59 +00:00
},
"dependencies": {
2022-06-02 19:44:44 +00:00
"@apidevtools/swagger-cli": "^4.0.4",
2022-05-16 12:29:59 +00:00
"@koa/cors": "^3.3.0",
"@koa/router": "^10.1.1",
2022-06-08 09:52:22 +00:00
"@publicodes/api": "^1.0.0-beta.43",
2022-06-08 09:09:34 +00:00
"@sentry/node": "^7.1.1",
"@sentry/tracing": "^7.1.1",
2022-05-16 12:29:59 +00:00
"koa": "^2.13.4",
"koa-body": "^5.0.0",
2022-05-16 12:29:59 +00:00
"koa-static": "^5.0.0",
2022-06-02 15:54:48 +00:00
"modele-social": "workspace:^",
2022-06-02 19:44:44 +00:00
"nodemon": "^2.0.16",
2022-06-08 09:52:22 +00:00
"publicodes": "^1.0.0-beta.43",
2022-05-25 15:48:28 +00:00
"swagger-ui-dist": "^4.11.1"
2022-05-16 12:29:59 +00:00
},
"devDependencies": {
"@types/koa": "^2.13.4",
"@types/koa-static": "^4.0.2",
"@types/koa__cors": "^3.3.0",
"@types/koa__router": "^8.0.11",
2022-05-25 15:48:28 +00:00
"@types/node": "^17.0.35",
2022-05-16 12:29:59 +00:00
"@types/swagger-ui-dist": "^3.30.1",
2022-06-02 13:28:08 +00:00
"chai-http": "^4.3.0",
"rimraf": "^3.0.2",
2022-05-25 15:48:28 +00:00
"ts-node": "^10.8.0",
"typescript": "^4.7.2",
2022-06-02 13:28:08 +00:00
"vitest": "^0.13.1",
2022-05-16 12:29:59 +00:00
"wait-on": "^6.0.1"
}
}