-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.82 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
{
"name": "resin-annuaire",
"version": "0.5.2",
"private": true,
"description": "Site de l'annuaire des expertises du Réseau d'Ingenieur USPC/SciencesPo",
"main": "index.js",
"scripts": {
"build": "node ./scripts/build.js",
"prettier": "prettier 'scripts/*.js' 'src/*.js' 'site/js/*.js' --write",
"serve": "npm run build && http-server build -p 3000 -o",
"test": "mocha",
"dev": "concurrently \"http-server build -p 3000 -o\" \"nodemon scripts/build.js --ignore ./build\"",
"push": "git checkout main && npm run build && npm run prettier && git add -p && git commit && git pull && git push origin main",
"upgrade": "git tag v$npm_package_version && git push origin tag v$npm_package_version",
"upgrade:prod": "git checkout prod && git pull && git merge main && git push && git checkout main"
},
"nodemonConfig": {
"ext": "js,json,css,html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/medialab/resin-annuaire.git"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/medialab/resin-annuaire/issues"
},
"homepage": "https://github.com/medialab/resin-annuaire#readme",
"dependencies": {
"@adobe/node-fetch-retry": "^2.2.0",
"@medialab/resin-formulaire": "github:medialab/resin-formulaire#v1.3.7",
"concurrently": "^8.2.2",
"csvtojson": "^2.0.10",
"fs-extra": "^11.1.1",
"http-server": "^14.1.1",
"js-yaml": "^4.1.0",
"kotatsu": "^0.23.1",
"lodash": "^4.17.21",
"mime": "^3.0.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.2",
"nunjucks": "^3.2.4",
"pandemonium": "^2.4.1",
"prettier": "^3.0.0",
"simple-nunjucks-loader": "^3.2.0",
"slug": "^8.2.3",
"svg-arc": "^1.0.2",
"unidecode": "^0.1.8"
},
"devDependencies": {
"marked": "^14.1.3",
"nunjucks-markdown": "^2.0.1"
}
}