-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 937 Bytes
/
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
{
"name": "planckunits.io",
"version": "0.0.0",
"description": "PlanckUnits HomePage",
"license": "MIT",
"repository": "planckunits/planckunits.io",
"homepage": "https://planckunits.io/",
"author": {
"name": "elzup",
"email": "[email protected]",
"url": "https://elzup.com"
},
"engines": {
"node": ">=16"
},
"scripts": {
"dev": "next",
"build": "next build",
"export": "next build && next export && cp _redirects out",
"start": "next start",
"test": "jest",
"lint": "eslint --ext .ts,.tsx .",
"test:watch": "jest --watch"
},
"dependencies": {
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"eslint": "^8.10.0",
"eslint-config-next": "^12.1.0",
"typescript": "^4.6.2"
}
}