forked from incubateur-ademe/nosgestesclimat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.61 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@incubateur-ademe/nosgestesclimat",
"version": "2.5.1",
"description": "Le modèle de calcul d'empreinte climat individuelle de consommation",
"main": "index.js",
"types": "index.d.ts",
"module": "index.js",
"files": [
"README.md",
"nosgestesclimat.model.json",
"public/*.json",
"index.js",
"index.d.ts",
"dottedNames.d.ts"
],
"scripts": {
"dev": "bun dev-server.ts",
"doc": "yarn --cwd quick-doc run dev",
"package": "yarn compile && node prepack.mjs",
"compile:md": "node scripts/rulesToJSON.mjs --markdown && node scripts/personasToJSON.js --markdown && node scripts/migrationToJSON.mjs --markdown",
"compile": "node scripts/rulesToJSON.mjs && node scripts/personasToJSON.js && node scripts/migrationToJSON.mjs && node scripts/uiToJSON.mjs node -e \"console.log('➡️ Compilation done \\n')\"",
"compile:fr": "node scripts/rulesToJSON.mjs -o FR && node scripts/personasToJSON.js && node scripts/migrationToJSON.mjs",
"compile:personas": "node scripts/personasToJSON.js",
"compile:migration": "node scripts/migrationToJSON.mjs",
"compile:rules": "node scripts/rulesToJSON.mjs",
"test:personas": "node tests/testPersonas.mjs",
"test:optim": "node tests/testOptim.mjs",
"test:translation": "node tests/testTranslation.mjs",
"test": "yarn test:personas && yarn test:optim && yarn test:translation",
"translate": "node scripts/i18n/translate-rules.mjs && node scripts/i18n/translate-personas.js",
"check:personas": "node scripts/i18n/check-personas.js ",
"translate:personas": "node scripts/i18n/translate-personas.js",
"check:rules": "node scripts/i18n/check-translation.mjs",
"translate:rules": "node scripts/i18n/translate-rules.mjs",
"generate:servicesRules": "node scripts/services-societaux/analyze_naf_ca.js && node scripts/services-societaux/desagregate_naf_SDES.js && node scripts/services-societaux/generate_rules.js",
"translate:model": "node scripts/i18n/translateRegionModel.js",
"format": "prettier . --write"
},
"contributors": [
"Clément Auger <clement.auger@beta.gouv.fr>",
"Benjamin Boisserie",
"Julie Pouliquen <julie.pouliquen@gmail.com>",
"Emile Rolley <emile.rolley@tuta.io>",
"Maël Thomas <laem@kont.me>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/incubateur-ademe/nosgestesclimat.git"
},
"bugs": {
"url": "https://github.com/incubateur-ademe/nosgestesclimat/issues"
},
"homepage": "https://github.com/incubateur-ademe/nosgestesclimat#readme",
"dependencies": {},
"devDependencies": {
"@incubateur-ademe/nosgestesclimat-scripts": "^0.6.0",
"@incubateur-ademe/publicodes-commun": "^1.1.1",
"@publicodes/tools": "^1.0.6",
"@types/bun": "^1.0.7",
"@types/express": "^4.17.21",
"@types/glob": "^8.1.0",
"@types/mocha": "^9.0.0",
"ansi-colors": "^4.1.3",
"cli-progress": "^3.11.2",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"deepl-node": "^1.7.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"futureco-data": "^0.1.0",
"git-diff": "^2.0.6",
"glob": "^8.0.3",
"http-server": "^14.1.1",
"isomorphic-fetch": "^3.0.0",
"nodemon": "^3.0.1",
"piscina": "^4.1.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"prompt-sync": "^4.2.0",
"publicodes": "^1.1.1",
"ramda": "^0.29.1",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4",
"yaml": "^2.2.2",
"yargs": "^17.6.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"publicodes": "^1.1.1"
}
}