forked from Delegation-numerique-en-sante/mesconseilscovid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"engines": {
"node": ">=14.16.x <15",
"npm": ">=6.14.11 <7"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/eslint-parser": "^7.13.14",
"@babel/eslint-plugin": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/register": "^7.13.16",
"@mermaid-js/mermaid-cli": "^8.9.2",
"chai": "^4.3.4",
"eslint": "^7.24.0",
"eslint-plugin-compat": "^3.9.0",
"jsdom": "^16.5.3",
"mocha": "^8.3.2",
"mocha-param": "^2.0.1",
"nyc": "^15.1.0",
"parcel-bundler": "^1.12.5",
"parcel-plugin-html-externals": "^0.2.0",
"parcel-plugin-ogimage": "^1.2.0",
"parcel-plugin-static-files-copy": "^2.6.0",
"parcel-plugin-sw-asset-urls": "^0.1.2",
"playwright": "^1.10.0",
"prettier": "^2.2.1",
"st": "^2.0.0"
},
"dependencies": {
"core-js": "3.10.2",
"localforage": "1.7.3",
"navigo": "7.1.2",
"pikaday": "^1.8.2",
"timeago.js": "4.0.2"
},
"scripts": {
"test": "mocha --color --require @babel/register src/scripts/tests/",
"test:coverage": "nyc npm run test",
"test-integration": "mocha --color --require @babel/register --retries=5 --bail --timeout 15000 src/scripts/tests/integration/",
"lint": "eslint --color src/scripts/ src/service-worker.js",
"prebuild": "rm -rf dist",
"build": "parcel build src/index.html --detailed-report 20 --experimental-scope-hoisting",
"build-dev": "parcel src/index.html --log-level 3 --open"
},
"externals": {
"version.json": false
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": 3
}
]
]
},
"browserslist": [
">0.5% in FR",
"last 2 versions",
"IE 11",
"Firefox ESR",
"not dead"
]
}