-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.9 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "novas",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clear:cache": "rm -rf .next",
"load:categories": "ts-node scripts/loadCategories.ts",
"store:images": "ts-node scripts/storeImages.ts",
"next:build": "next build",
"next:export": "next export",
"build:next": "run-s clear:cache rm:tmpdirs mk:tmpdirs load:categories store:images next:build next:export --print-label",
"rm:tmpimages": "rm -rf public/.images",
"rm:tmpcategories": "rm -rf .tmp/",
"mk:tmpimages": "mkdir public/.images",
"mk:tmpcategories": "mkdir .tmp/",
"mk:tmpdirs": "run-p mk:tmpimages mk:tmpcategories --print-label",
"rm:tmpdirs": "run-p rm:tmpimages rm:tmpcategories --print-label",
"next:start": "next start",
"next:dev": "next dev",
"test": "node --experimental-vm-modules node_modules/.bin/jest/"
},
"author": "kibe",
"license": "ISC",
"dependencies": {
"autoprefixer": "^10.2.5",
"file-type": "^16.3.0",
"next": "^10.0.9",
"next-plugin-preval": "^1.0.0-alpha.13",
"postcss": "^8.2.8",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"swr": "^0.5.4",
"tailwindcss": "^2.0.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.0.9",
"@svgr/webpack": "^5.5.0",
"@tailwindcss/jit": "^0.1.4",
"@types/eslint-config-prettier": "^6.11.0",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"@types/node-fetch": "^2.5.8",
"@types/prettier": "^2.2.3",
"@types/react": "^17.0.3",
"@types/shortid": "0.0.29",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vercel/node": "^1.9.1",
"babel-plugin-macros": "^3.0.1",
"babel-plugin-styled-components": "^1.12.0",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-functional": "^3.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"fp-ts": "^2.10.0-rc.4",
"fp-ts-ramda": "^0.1.7",
"fp-ts-std": "^0.9.0",
"image-downloader": "^4.0.2",
"io-ts": "^2.2.16",
"jest": "^26.6.3",
"lorem-ipsum": "^2.0.3",
"next-compose-plugins": "^2.2.1",
"node-fetch": "^2.6.1",
"normalizr": "^3.6.1",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"prettier-config-standard": "^4.0.0",
"prettier-standard": "^16.4.1",
"random-paragraph": "^1.0.4",
"react-is": "^17.0.1",
"shortid": "^2.2.16",
"styled-components": "^5.2.1",
"tailwindcss-filters": "^3.0.0",
"tailwindcss-typography": "^3.1.0",
"ts-jest": "^26.5.4",
"ts-newsapi": "^1.0.0",
"ts-node": "^9.1.1",
"twin.macro": "^2.3.0",
"typescript": "^4.2.3"
}
}