-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 KB
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": "corpus-development-software",
"version": "1.0.0",
"description": "Corpus Development Software is a web-based application designed with the objectives of creating a platform for developing a parallel corpus.",
"main": "server.js",
"scripts": {
"server": "nodemon server.js",
"start": "node server.js",
"build-client": "npm run build --prefix client",
"pretty": "prettier --write \"./**/*.{js,jsx,json}\"",
"prettier": "prettier --single-quote \"{client,api}/**/*.js\" \"{client,api}/**/*.css\""
},
"keywords": [
"Machine",
"Translation",
"Corpus",
"Development",
"Software"
],
"author": "Binaya Kumar Chaudhary",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"config": "^3.2.6",
"express": "^4.17.1",
"express-mongo-sanitize": "^1.3.2",
"express-rate-limit": "^5.1.1",
"express-validator": "^6.4.0",
"helmet": "^3.21.3",
"html-pdf": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.2",
"morgan": "^1.9.1",
"nodemailer": "^6.4.5"
},
"devDependencies": {
"prettier": "^2.0.5"
}
}