-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
111 lines (111 loc) · 4.18 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "texterify",
"private": true,
"dependencies": {
"@ant-design/compatible": "^1.0.8",
"@ant-design/icons": "^4.5.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@rails/actioncable": "^7.0.1",
"@rails/webpacker": "^5.1.1",
"@sentry/react": "^6.2.0",
"@sentry/tracing": "^6.2.0",
"@sentry/webpack-plugin": "^1.14.1",
"@stripe/stripe-js": "^1.9.0",
"@types/lodash": "^4.14.168",
"@types/pubsub-js": "^1.8.3",
"@types/query-string": "^6.1.0",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-dropzone": "^5.1.0",
"@types/react-router": "^5.0.3",
"@types/react-router-dom": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"@uppy/core": "^1.4.0",
"@uppy/react": "^1.3.0",
"antd": "^4.12.3",
"axios": "^1.2.3",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-react": "^6.24.1",
"core-js": "3",
"dotenv": "^8.2.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"flag-icon-css": "^3.5.0",
"history": "^4.7.2",
"js-file-download": "^0.4.12",
"less-loader": "^6.0.0",
"localforage": "^1.9.0",
"lodash": "^4.17.21",
"mobx": "^5.13.0",
"mobx-persist": "^0.4.1",
"mobx-react": "^6.1.3",
"moment": "^2.29.1",
"postcss-cssnext": "^3.1.0",
"prettier": "^2.3.0",
"prop-types": "^15.6.1",
"pubsub-js": "^1.9.4",
"query-string": "^6.14.1",
"react": "^16.9.0",
"react-avatar-editor": "^11.0.7",
"react-dom": "^16.9.0",
"react-dropzone": "^10.1.8",
"react-flag-icon-css": "^1.0.23",
"react-hot-keys": "^2.6.2",
"react-markdown": "^8.0.3",
"react-query": "^3.39.2",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-spinkit": "^3.0.0",
"react_ujs": "^2.6.0",
"remark-gfm": "^3.0.1",
"sanitize-html": "^1.20.1",
"styled-components": "^5.2.1",
"stylelint-config-standard": "^20.0.0",
"ts-loader": "^7.0.1",
"typescript": "^3.8.3",
"use-deep-compare-effect": "^1.8.1",
"uuid": "^8.3.2",
"webpack-cli": "^3.3.10"
},
"devDependencies": {
"@prettier/plugin-ruby": "^1.5.5",
"cypress": "12.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-mocha": "^9.0.0",
"less": "^4.1.1",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-dev-server": "^3.11.2"
},
"engines": {
"yarn": ">=1.5.1"
},
"scripts": {
"check:database-consistency": "./bin/database_consistency",
"check:database-consistency:test": "RAILS_ENV=test ./bin/database_consistency",
"check:licenses": "bundle exec license_finder",
"lint": "yarn lint:frontend && yarn lint:backend",
"lint:frontend": "eslint 'app/javascript/**/*.{js,ts,tsx}' 'spec/**/*.{js,ts,tsx}'",
"lint:backend": "bundle exec rubocop",
"format": "yarn format:frontend && yarn format:backend",
"format:frontend": "prettier --write 'app/**/*.{js,ts,tsx}'",
"format:backend": "prettier --write 'app/**/*.rb'",
"start": "bundle exec sidekiq & bundle exec rails server -p 3000 -b \"0.0.0.0\"",
"start:watcher": "./bin/webpack-dev-server",
"test": "yarn test:backend",
"test:backend": "RAILS_ENV=test bundle exec rspec",
"test:backend:update": "UPDATE_SNAPSHOTS=true RAILS_ENV=test bundle exec rspec",
"test:frontend": "yarn cypress install && yarn cypress:run",
"dangerous:recreate-database": "SKIP_TEST_DATABASE=true bundle exec rails db:drop && SKIP_TEST_DATABASE=true bundle exec rails db:create && SKIP_TEST_DATABASE=true bundle exec rails db:migrate && SKIP_TEST_DATABASE=true bundle exec rails db:seed",
"webpack-bundle-analyzer": "bin/webpack --profile --json > webpacker-stats.json && node_modules/.bin/webpack-bundle-analyzer webpacker-stats.json public/packs",
"cypress:open": "yarn cypress open --project ./spec",
"cypress:run": "yarn cypress run --project ./spec",
"db:seed": "bundle exec rails db:seed",
"codegen": "./docs/swagger-codegen.sh"
}
}