-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
executable file
·35 lines (35 loc) · 1.02 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
{
"name": "TweenPages",
"description": "Build complex animated page transitions with GSAP and Next.js",
"version": "0.1.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"format-watch": "npm run format && onchange \"**/*.{js,jsx,json,md}\" -- prettier --write {{changed}}",
"deploy": "npm run test && git push origin main && vercel --prod"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"@gsap/business": "^3.9.1",
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^12.0.8",
"gsap": "npm:@gsap/business@^3.7.1",
"next": "^12.0.8",
"prism-react-renderer": "^1.2.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"theme-ui": "^0.13.1"
},
"devDependencies": {
"onchange": "^7.1.0",
"prettier": "^2.4.0"
},
"resolutions": {
"@babel/runtime": "^7.12.5"
},
"repository": "https://github.com/johnpolacek/TweenPages",
"license": "MIT-0"
}