-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.25 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
43
44
{
"name": "remise-masques-covid-19",
"version": "1.0.0",
"description": "Application destinée aux entités remettantes pour distribuer les masques",
"main": "",
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/runtime-corejs3": "^7.9.0",
"core-js": "^3.6.5",
"babel-jest": "^29.7.0",
"cookieconsent": "^3.1.1",
"husky": "^4.3.8",
"jest": "^29.3.1",
"lint-staged": "^10.1.7",
"parcel": "^2.8.1",
"prettier": "^2.0.5"
},
"devDependencies": {},
"scripts": {
"test": "jest",
"build": "parcel build front/main/*.js --no-source-maps --out-dir src/main/resources/static/js",
"build-dev": "parcel front/main/*.js --no-source-maps --out-dir src/main/resources/static/js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dmgp/remise-masques-covid-19.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/dmgp/remise-masques-covid-19/issues"
},
"homepage": "https://gitlab.com/dmgp/remise-masques-covid-19#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write --print-width 120"
}
}