-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1 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
{
"name": "qwiz",
"version": "1.0.0",
"description": "A MERN application for creating quizzes and flashcards",
"scripts": {
"start": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"cd server && npm run dev\" \"cd client && npm start\" \"cd client && npm run css:build\"",
"install": "cd server && npm i && cd ../client && npm i",
"lint": "npx eslint .",
"lint-fix": "npx eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spencercreer/qWIZ.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/spencercreer/qWIZ/issues"
},
"homepage": "https://github.com/spencercreer/qWIZ#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"concurrently": "^7.4.0",
"eslint": "^8.23.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"typescript": "^4.8.3"
}
}