forked from stanleynguyen/amongus-todo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.25 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": "amongus-todo",
"version": "1.0.0",
"description": "Fake REST API server of tasks from Among Us",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint --ignore-path .eslintignore --ext .ts,.js .",
"lint:fix": "eslint --ignore-path .eslintignore --ext .ts,.js --fix .",
"format": "prettier --config .prettierrc.js --write '*.{ts,js,json}' './src/**/*.{ts,js,json}' './tests/**/*.{ts,js,json}'",
"test": "jest --verbose --runInBand ./tests/.*\\.js --config ./jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stanleynguyen/amongus-todo.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/stanleynguyen/amongus-todo/issues"
},
"homepage": "https://github.com/stanleynguyen/amongus-todo#readme",
"dependencies": {
"json-server": "^0.16.3"
},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-extended": "^0.11.5",
"lint-staged": "^11.1.0",
"prettier": "^2.3.2",
"supertest": "^6.1.4"
}
}