-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "secret-message",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"start-local-port-forwarding": "ssh -L 127.0.0.1:3306:localhost:3306 dingel.dev -N",
"lint": "eslint --fix . --ext .json --ext .js",
"prettier": "prettier --write \"**/*.{js,json,md}\" --ignore-path .gitignore"
},
"lint-staged": {
"*.{js}": [
"prettier --write"
]
},
"dependencies": {
"@svgr/webpack": "5.4.0",
"autoprefixer": "^10.0.2",
"crypto": "^1.0.1",
"framer-motion": "^2.9.4",
"next": "^10.0.2",
"nodemailer": "^6.4.16",
"postcss": "^8.1.9",
"postcss-import": "^13.0.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-ga": "^3.3.0",
"serverless-mysql": "^1.5.4",
"sql-template-strings": "^2.2.2",
"tailwindcss": "^2.0.1",
"uuid": "^8.3.1"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"autoprefixer": "^10.0.2",
"eslint": "^7.10.0",
"eslint-config-get-off-my-lawn": "^5.0.1",
"lint-staged": "^10.4.0"
}
}