-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "ihna_app",
"version": "1.1.2",
"description": "The whole program and allows the visualization of the different states of the applications",
"main": "src/server.js",
"scripts": {
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"test:dev": "jest --detectOpenHandles --watchAll",
"test:cov": "jest --coverage",
"test": "jest --force-exit --detectOpenHandles",
"serve": "NODE_ENV=developpement nodemon src/server.js",
"start": "NODE_ENV=production node src/server.js",
"preversion": "git fetch --tags && npm run lint:check && npm test",
"postversion": "git push --follow-tags"
},
"keywords": [
"IHNA",
"App",
"Centralisation",
"Service"
],
"author": "Kritune",
"license": "ISC",
"dependencies": {
"@types/jest": "^26.0.20",
"axios": "^0.24.0",
"dotenv": "^8.2.0",
"eslint-plugin-jest": "^24.7.0",
"express": "^4.17.1",
"i": "^0.3.6",
"request": "^2.88.2"
},
"devDependencies": {
"codecov": "^3.8.1",
"eslint": "^7.17.0",
"jest": "^26.6.3",
"node-mocks-http": "^1.9.0",
"nodemon": "^2.0.7",
"supertest": "^6.0.1"
}
}