-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.16 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
41
42
43
44
45
46
47
48
49
{
"name": "thinc-www",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"axios": "^0.23.0",
"bezier-easing": "^2.1.0",
"classnames": "^2.2.6",
"date-fns": "^2.25.0",
"get-src": "^1.0.1",
"next": "10",
"ordinal": "^1.0.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-icons": "^3.7.0",
"react-particles-js": "^3.5.3",
"rss-parser": "^3.12.0",
"webpack": "4.44.1"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"now-build": "next build",
"export": "next export",
"prepare": "husky install"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.2.0",
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
"@types/react": "^17.0.30",
"@zeit/next-css": "^1.0.1",
"autoprefixer": "^9.6.0",
"cssnano": "^4.1.10",
"husky": "^7.0.2",
"lint-staged": "^11.2.0",
"prettier": "^2.4.1",
"tailwindcss": "^1.0.3",
"tsparticles": "^1.36.0",
"typescript": "^4.4.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"yarn prettier --write"
],
"*.{js,css,md}": "prettier --write"
}
}