-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 844 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
36
37
{
"name": "tictactoe",
"version": "0.0.0",
"description": "",
"private": true,
"workspaces": [
"api",
"app"
],
"engines": {
"npm": "7.11.1"
},
"main": "index.js",
"scripts": {
"dev": "npm run dev --workspace=api",
"start": "npm run start --workspace=api",
"app": "npm run start --workspace=app",
"build": "npm run build --workspace=app",
"test:app": "npm run test --workspace=app",
"eject": "npm run eject --workspace=app",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"eslint": "7.25.0",
"eslint-config-prettier": "8.3.0",
"husky": "6.0.0",
"prettier": "2.2.1"
},
"dependencies": {
"react-cookie": "^4.0.3"
}
}