-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.12 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.12 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
{
"name": "ba-clockify",
"version": "1.1.0",
"description": "A simple visualization of registration hours",
"engines": {
"node": "12.x",
"npm": "6.x"
},
"scripts": {
"start": "node ./server/server.js",
"format": "prettier --write \"**/*.{js,jsx,md,json,html,css,yml}\" --ignore-path .gitignore",
"test": "echo \"Error: no test specified\" && exit 1",
"test:prettier": "prettier --check \"**/*.{js,jsx,md,json,html,css,yml}\" --ignore-path .gitignore",
"test:lint": ".\\node_modules\\.bin\\eslint ./**/*.js",
"eslint-check-rules": "eslint --print-config ./**/*.js | eslint-config-prettier-check"
},
"keywords": [],
"author": "Bruno Alexandre",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"moment": "^2.27.0"
},
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5"
}
}