-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 840 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 840 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
33
34
35
36
37
38
{
"private": true,
"scripts": {
"dev": "next dev",
"lint": "next lint --no-cache",
"build": "next build",
"start": "next start"
},
"dependencies": {
"ace-builds": "^1.4.13",
"autoprefixer": "^10.2.6",
"axios": "^0.22.0",
"cssnano": "^5.0.8",
"next": "latest",
"postcss": "^8.3.5",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-ace": "^9.4.4",
"react-dom": "^17.0.2",
"tailwindcss": "^2.2.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.4.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"printWidth": 160,
"semi": true,
"useTabs": true,
"arrowParens": "avoid"
}
}