-
-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
69 lines (69 loc) · 2.21 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "singlelink",
"private": false,
"version": "4.1.0",
"homepage": "https://singlelink.co",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:docker": "docker build -t jimbisenius/singlelink ./docker",
"start": "next start",
"lint": "next lint",
"generate": "graphql-codegen --config codegen.yml --watch",
"postinstall": "npx migrate-mysql",
"db:migrate": "npx migrate-mysql",
"boot:app": "docker pull singlelink | docker run --name singlelink-app -p 3000:3000 singlelink",
"boot:db": "docker pull mysql | docker run --name singlelink-mysql -e MYSQL_DATABASE=singlelink -p 3306:3306 -e MYSQL_ROOT_PASSWORD=single-my-links -d mysql:latest"
},
"dependencies": {
"@apollo/client": "^3.5.8",
"apollo-server-micro": "^3.6.3",
"dotenv-run-script": "^0.2.0",
"graphql": "15.7.2",
"html-react-parser": "^1.4.8",
"jsonwebtoken": "^8.5.1",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"mysql-await": "^2.1.8",
"mysql2": "^2.3.3",
"next": "latest",
"next-absolute-url": "^1.2.2",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"ts-node": "^10.5.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "1.22.0",
"@graphql-codegen/typescript-operations": "1.17.16",
"@graphql-codegen/typescript-react-apollo": "^3.2.2",
"@graphql-codegen/typescript-resolvers": "1.18.0",
"@types/node": "^17.0.17",
"@types/react": "17.0.39",
"@types/react-beautiful-dnd": "^13.1.2",
"autoprefixer": "^10.4.2",
"camelize-ts": "^1.0.8",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"graphql-codegen": "^0.4.0",
"migrate-mysql": "^0.4.0",
"postcss": "^8.4.6",
"tailwindcss": "^3.0.21",
"typescript": "4.5.5"
},
"bugs": {
"url": "https://github.com/Neutron-Creative/Singlelink/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Neutron-Creative/Singlelink.git"
},
"author": {
"name": "Jim Bisenius",
"email": "[email protected]",
"url": "https://twitter.com/jim_bisenius"
}
}