-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.51 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.51 KB
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
40
41
42
43
44
45
{
"name": "devprotocol",
"version": "0.11.0",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"lint": "yarn lint:eslint && yarn lint:prettier && yarn lint:prettier:astro",
"lint:eslint": "eslint --fix '**/*.{js,mjs,cjs}'",
"lint:prettier": "prettier -w --ignore-path .astro.prettierignore --no-error-on-unmatched-pattern .",
"lint:prettier:astro": "yarn prettier -w **/*.astro || echo '🙈 > ignored some errors of prettier for astro'",
"prepare": "husky install"
},
"devDependencies": {
"@astrojs/renderer-vue": "^0.2.1",
"astro": "^1.2.3",
"autoprefixer": "^10.4.0",
"bignumber.js": "9.0.2",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.4",
"node-fetch": "2.6.1",
"postcss": "^8.4.5",
"prettier": "^2.6.0",
"prettier-plugin-astro": "^0.0.12",
"prettier-plugin-tailwindcss": "^0.1.8",
"ramda": "^0.28.0",
"remark-cli": "^10.0.1",
"tailwindcss": "^3.0.7",
"@astrojs/tailwind": "^1.0.1",
"@astrojs/vue": "^1.0.2"
},
"description": "Dev Protocol's open-source website, built with Astro",
"repository": "https://github.com/dev-protocol/devprotocol.xyz.git",
"author": "dev-protocol",
"license": "MIT",
"dependencies": {}
}