-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1006 Bytes
/
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
{
"name": "xnote-server",
"version": "1.0.0",
"description": "Backend for xNote Application. Developed in Node.js, Express, Knex, MySQL using TypeScript",
"main": "src/index.ts",
"scripts": {
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"test": "tsc-watch --onSuccess \"mocha ./dist/**/__test__/*.test.js\""
},
"author": "ridwan",
"license": "MIT License",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"bcryptjs": "^2.4.3",
"chai": "^4.3.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"husky": "^8.0.3",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"knex": "^2.2.0",
"mysql2": "^2.3.3",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.1",
"mocha": "^10.0.0",
"tsc-watch": "^5.0.3"
},
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}