-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.33 KB
/
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
40
{
"name": "fcc-js-frameworks-certificate",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "npm-run-all build:astro build:compress",
"build:astro": "astro build",
"build:compress": "find dist -type f -a \\( -name '*.html' -o -name '*.css' -o -name '*.js' -o -name '*.json' -o -name '*.xml' -o -name '*.svg' -o -name '*.txt' \\) -exec brotli --best --force {} \\+ -exec gzip --best --force -k {} \\+",
"preview": "astro preview",
"test": "npm-run-all check build",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix",
"check": "astro check"
},
"dependencies": {
"marked": "^4.0.10",
"math-expression-evaluator": "^1.3.8",
"react-redux": "^7.2.6",
"redux": "^4.1.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.0",
"@vitejs/plugin-react": "^1.1.4",
"astro": "^0.21.12",
"autoprefixer": "^10.4.2",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-svelte3": "^3.4.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.6.0",
"tailwindcss": "^3.0.15"
}
}