-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 791 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 791 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
{
"name": "learn-starter",
"version": "0.1.0",
"scripts": {
"build": "next build",
"dev": "next dev",
"fix": "./node_modules/.bin/eslint --fix $1",
"start": "next start"
},
"dependencies": {
"next": "^10.0.0",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"private": true,
"devDependencies": {
"@types/node": "^14.14.12",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"bootstrap": "^4.5.3",
"eslint": "^7.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-json-format": "^2.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"sass": "^1.30.0",
"tailwindcss": "^2.0.2",
"typescript": "^4.1.3"
}
}