forked from forem/forem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.85 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 3.85 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "dev.to",
"version": "1.0.0",
"description": "Where programmers share ideas and help each other grow",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"scripts": {
"api-docs:lint": "spectral lint -F hint -v docs/api_v0.yml && lint-openapi -e docs/api_v0.yml",
"api-docs:serve": "redoc-cli serve docs/api_v0.yml --options.pathInMiddlePanel --options.jsonSampleExpandLevel=all --options.menuToggle -t docs/api_template.hbs --watch",
"build-storybook": "build-storybook -c app/javascript/.storybook -s app/assets",
"storybook": "start-storybook -p 6006 -c app/javascript/.storybook -s app/assets",
"test": "jest app/javascript/ --coverage",
"test:watch": "jest app/javascript/ --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"app/assets/config/manifest.js": [
"prettier --write",
"eslint --fix -c app/assets/javascripts/.eslintrc.js"
],
"docs/api_v0.yml": [
"spectral lint -F hint",
"lint-openapi -e"
],
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
],
"{app,spec,config,lib}/**/*.rb": [
"bundle exec rubocop --require rubocop-rspec --safe-auto-correct"
],
"Gemfile": [
"bundle exec rubocop --require rubocop-rspec --safe-auto-correct"
],
"app/**/*.html.erb": [
"bundle exec erblint"
],
"*.json": [
"prettier --write"
],
"*.scss": [
"prettier --write"
],
"*.md": [
"prettier --write --prose-wrap always"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80
},
"repository": {
"type": "git",
"url": "git+https://github.com/thepracticaldev/dev.to.git"
},
"author": "",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/thepracticaldev/dev.to/issues"
},
"homepage": "https://github.com/thepracticaldev/dev.to#readme",
"devDependencies": {
"@stoplight/spectral": "5.1.0",
"@storybook/addon-actions": "3.4.12",
"@storybook/addon-knobs": "3.4.12",
"@storybook/addon-links": "3.4.12",
"@storybook/addons": "3.4.12",
"@storybook/react": "3.4.12",
"babel-eslint": "^10.1.0",
"babel-jest": "^23.4.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-ignore-erb": "^0.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"faker": "^4.1.0",
"husky": "^4.2.3",
"ibm-openapi-validator": "0.24.1",
"jest": "^23.5.0",
"jest-axe": "^3.4.0",
"jest-fetch-mock": "^3.0.2",
"jsdom": "^16.2.0",
"lint-staged": "^10.0.8",
"mutationobserver-shim": "^0.3.3",
"preact-render-spy": "1.3.0",
"preact-render-to-json": "^3.6.6",
"prettier": "^1.19.1",
"redoc-cli": "0.9.6",
"webpack-dev-server": "^2.11.3"
},
"dependencies": {
"@github/clipboard-copy-element": "^1.1.2",
"@rails/webpacker": "^3.5.5",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-preact": "^1.1.0",
"chart.js": "^2.9.3",
"clipboard-polyfill": "^2.8.6",
"codemirror": "^5.52.0",
"focus-visible": "^5.0.2",
"honeybadger-js": "2.1.3",
"intersection-observer": "^0.7.0",
"linkstate": "^1.1.1",
"lodash.debounce": "4.0.8",
"marked": "^0.8.0",
"postscribe": "^2.0.8",
"preact": "^8.5.3",
"preact-compat": "^3.19.0",
"preact-textarea-autosize": "^4.0.7",
"prop-types": "^15.7.2",
"pusher-js": "^5.1.1",
"rails-erb-loader": "^5.5.2",
"stimulus": "^1.1.1",
"twilio-video": "^2.2.0",
"web-share-wrapper": "^0.2.1"
},
"jest": {
"setupFiles": [
"jest-localstorage-mock"
]
}
}