Skip to content

Commit

Permalink
feat: change le top level des fichier
Browse files Browse the repository at this point in the history
Note: nécéssaire pour avoir un seul .env à la racine du projet
  • Loading branch information
baptou12 committed Sep 15, 2023
1 parent b3fa28f commit 43ff7a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"build:server": "tsc -p tsconfig.server.json",
"preview": "vite preview",
"lint": "eslint backend data iframes lib src --ext ts,js,vue --max-warnings 0",
"ci": "npm run stats && cd dist-server && NODE_ENV=production node ./backend/server.js",
"ci": "npm run stats && NODE_ENV=production node ./dist-server/backend/server.js",
"cypress": "cypress run",
"cypress:open": "cypress open",
"db": "mongod --dbpath db",
Expand All @@ -27,7 +27,7 @@
"prestart": "npm run build && npm run stats",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"start": "cd dist-server && NODE_ENV=production node ./backend/server.js",
"start": "NODE_ENV=production node ./dist-server/backend/server.js",
"stats": "ts-node ./backend/lib/stats",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_PATH=. jest --testTimeout=20000",
"tools:check-links-validity": "ts-node ./tools/check-links-validity.ts",
Expand Down

0 comments on commit 43ff7a6

Please sign in to comment.