-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
50 lines (50 loc) · 1.71 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": "listed",
"dependencies": {
"@babel/core": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.10.1",
"@babel/preset-react": "^7.10.1",
"@hcaptcha/react-hcaptcha": "^0.2.1",
"@rails/webpacker": "4.2.2",
"axios": "^0.19.2",
"dayjs": "^1.10.4",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4",
"husky": "^4.3.8",
"js-yaml": "^3.14.0",
"lint-staged": "^10.5.3",
"prettier": "^2.7.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-inlinesvg": "^2.1.0",
"react-on-rails": "11.3.0",
"react-router": "^5.2.0",
"sass-resources-loader": "^2.1.0",
"sn-stylekit": "2.0.19",
"turbolinks": "^5.2.0",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"scripts": {
"start:dev": "bin/webpack-dev-server & bundle exec rails server -p 3009",
"start:production": "bundle exec rails server -b 0.0.0.0 -p 3009 -e production",
"build:dev": "rm -rf public/packs/development && RAILS_ENV=development NODE_ENV=development bin/webpack",
"build:dev:watch": "RAILS_ENV=development NODE_ENV=development bin/webpack --watch",
"build:production": "RAILS_ENV=production NODE_ENV=production bin/webpack -p",
"build:clean": "rm -rf public/packs || true",
"eslint": "node_modules/.bin/eslint --ext js,jsx --fix client/app"
},
"lint-staged": {
"*.{js,jsx}": "node_modules/.bin/eslint --fix"
},
"devDependencies": {
"eslint-plugin-prettier": "^4.2.1"
}
}