libre-charge-map/package.json

41 lines
1,000 B
JSON
Raw Normal View History

2024-12-17 11:53:02 +01:00
{
"name": "libre-charge-map",
"version": "0.5.0",
"description": "Un visualisateur coloré de stations de recharge pour véhicules électriques selon les données OSM.",
"main": "index.js",
"devDependencies": {
"@babel/preset-env": "^7.14.4",
"@testing-library/dom": "^7.31.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/user-event": "^13.1.9",
"babel-jest": "^27.0.2",
"jest": "^27.0.3",
"jest-html-reporter": "^3.4.1",
2025-04-28 10:08:31 +02:00
"sass-migrator": "^2.3.1",
"serve": "^14.2.4"
2024-12-17 11:53:02 +01:00
},
"scripts": {
2025-04-28 10:08:31 +02:00
"test": "jest",
"build": "sass styles/main.scss styles/style.css --style compressed",
"watch": "sass --watch styles/main.scss:styles/style.css"
2024-12-17 11:53:02 +01:00
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"rootDir": "tests",
"moduleFileExtensions": [
"js",
"mjs",
"cjs",
"jsx",
"ts",
"tsx",
"json",
"node"
]
2025-04-28 10:08:31 +02:00
},
"dependencies": {
"sass": "^1.87.0"
2024-12-17 11:53:02 +01:00
}
2025-04-28 10:08:31 +02:00
}