forked from mate-academy/node_accounting-app-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 974 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": "node_accounting-app",
"version": "1.0.0",
"description": "Node.js accounting app",
"main": "src/index.js",
"scripts": {
"init": "mate-scripts init",
"start": "node src/main.js",
"lint": "npm run format && mate-scripts lint",
"format": "prettier --ignore-path .prettierignore --write './src/**/*.{js,ts}'",
"test:only": "mate-scripts test",
"update": "mate-scripts update",
"postinstall": "npm run update",
"test": "npm run lint && npm run test:only"
},
"author": "Mate academy",
"license": "GPL-3.0",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.3"
},
"devDependencies": {
"@mate-academy/eslint-config": "latest",
"@mate-academy/scripts": "^1.7.3",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-node": "^8.0.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"supertest": "^6.3.4"
},
"mateAcademy": {
"projectType": "javascript"
}
}