-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 841 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 841 Bytes
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
{
"name": "next-test",
"version": "0.0.1",
"description": "NextJS test repo",
"repository": "https://github.com/codynova/nextjs-basic",
"author": "Cody Nova",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "npm run build && next export"
},
"dependencies": {
"next": "10.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-spring": "9.1.2",
"styled-components": "5.2.3",
"styled-system": "5.1.5"
},
"devDependencies": {
"@babel/core": "7.13.16",
"@babel/eslint-parser": "7.13.14",
"@babel/eslint-plugin": "7.13.16",
"babel-plugin-styled-components": "1.12.0",
"eslint": "7.25.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-webpack-plugin": "2.5.4"
}
}