-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
executable file
·50 lines (50 loc) · 1.51 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
{
"name": "gatsby-theme-chronoblog-workspace",
"private": true,
"license": "MIT",
"author": "Ivan Ganev <ganevio92@gmail.com>",
"workspaces": [
"packages/*",
"starters/*",
"examples/*",
"test-builds/*"
],
"scripts": {
"clean:chronoblog": "cd starters/chronoblog && npm run clean",
"fix": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"generate-starters": "node ./scripts/generate-starters",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"start": "npm run start:chronoblog",
"start:chronoblog": "npm run generate-starters && cd starters/chronoblog && npm run start"
},
"devDependencies": {
"@types/jest": "26.0.20",
"@types/lodash": "4.14.168",
"@types/node": "14.14.31",
"@types/react": "16.14.4",
"@types/react-dom": "16.9.11",
"@types/react-helmet": "6.1.0",
"@typescript-eslint/eslint-plugin": "4.15.2",
"@typescript-eslint/parser": "4.15.2",
"babel-preset-gatsby": "0.12.1",
"eslint": "7.20.0",
"eslint-config-prettier": "8.0.0",
"eslint-plugin-html": "6.1.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"fs-extra": "8.1.0",
"identity-obj-proxy": "3.0.0",
"lodash": "^4.17.21",
"prettier": "2.2.1",
"typescript": "4.1.5"
},
"engines": {
"node": ">=15.0.0",
"npm": ">=7.0.0",
"yarn": "! use npm !"
}
}