-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
40 lines (40 loc) · 1 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
{
"name": "locales-2-app",
"version": "1.0.0",
"description": "https://github.com/mashpie/i18n-node",
"main": "app/app.js",
"scripts": {
"clean": "node ./npm_scripts/clean.js",
"client": "node ./npm_scripts/start_client.js",
"lint": "eslint app",
"reinstall": "npm run clean && npm install -audit",
"start": "node ./npm_scripts/start_browser.js && node .",
"test": "mocha --recursive"
},
"maintainers": [
{
"name": "Stéphane Micheloud",
"web": "http://lampwww.epfl.ch/~michelou/"
}
],
"private": true,
"license": "BSD",
"dependencies": {
"body-parser": "^1.20.2",
"ejs": "^3.1.10",
"express": "^4.21.1",
"i18n-abide": "^0.0.26",
"method-override": "^3.0.0"
},
"devDependencies": {
"eslint": "^9.14.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0"
},
"engines": {
"node": ">=16.20.2",
"npm": ">=6.14.0"
}
}