-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.14 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
{
"name": "movies",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"frontend": "npm --prefix ./client run start",
"api": "npm --prefix ./server run dev",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently --names \"server, client\" -c \"green,magenta\" \"npm run api\" \"npm run frontend\"",
"build": "tsc",
"start": "ts-node server/src/index.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:VolodymyrKirichenko/Movies_Recommendation.git"
},
"author": "volodymyr",
"license": "ISC",
"bugs": {
"url": "https://github.com/VolodymyrKirichenko/Movies_Recommendation/issues"
},
"homepage": "https://github.com/VolodymyrKirichenko/Movies_Recommendation#readme",
"devDependencies": {
"@graphql-codegen/cli": "2.9.1",
"@graphql-codegen/introspection": "2.2.0",
"@graphql-codegen/typescript": "2.7.2",
"@graphql-codegen/typescript-operations": "2.5.2",
"@graphql-codegen/typescript-react-apollo": "3.3.2",
"concurrently": "^7.4.0",
"husky": "^8.0.1"
},
"dependencies": {
"react-share": "^4.4.1"
}
}