-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
32 lines (32 loc) · 1.03 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
{
"name": "mano",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/SocialGouv/mano.git",
"author": "Raphaël Huchet <[email protected]>, Arnaud Ambroselli <[email protected]>",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.35.1",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"node-talisman": "^1.29.3"
},
"scripts": {
"test:start-dashboard-for-record": "REACT_APP_HOST=127.0.0.1:8091 REACT_APP_SCHEME=http REACT_APP_TEST=true REACT_APP_TEST_PLAYWRIGHT=true PORT=8090 yarn --cwd ./dashboard dev",
"test:start-api-for-record": "PORT=8091 NODE_ENV=test PGDATABASE=manotest yarn --cwd ./api start:test",
"test:init-db": "PGDATABASE=manotest node ./e2e/scripts/init-db.js",
"postinstall": "is-ci || husky install"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dayjs": "^1.11.6",
"dotenv": "^16.0.3",
"nanoid": "3.3.4",
"pg": "^8.8.0",
"uuid": "^9.0.0"
},
"prettier": {
"printWidth": 150
},
"packageManager": "[email protected]"
}