-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.6 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": "eschooltul",
"private": true,
"scripts": {
"lint": "eslint app/javascript spec/cypress --ext js,jsx",
"lint:fix": "yarn lint --fix",
"cy:open": "cypress open --project ./spec",
"cy:run": "cypress run --project ./spec",
"start-server": "rails server -e test -p 5017",
"start-server-and-wait": "RAILS_ENV=test yarn start-server & wait-on http-get://localhost:5017"
},
"dependencies": {
"@babel/preset-react": "^7.12.10",
"@rails/actioncable": "^6.0.0",
"@rails/activestorage": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@rails/webpacker": "5.2.1",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"alpinejs": "^2.7.3",
"autoprefixer": "^9.8.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"i18n-js": "^3.8.0",
"lodash": "^4.17.20",
"postcss": "^7.0.35",
"prop-types": "^15.7.2",
"rails-erb-loader": "^5.5.2",
"react": "^17.0.1",
"react-csv": "^2.0.3",
"react-dom": "^17.0.1",
"react_ujs": "^2.6.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.1",
"turbolinks": "^5.2.0",
"typeface-montserrat-alternates": "^1.1.13"
},
"version": "0.1.0",
"devDependencies": {
"cypress": "^6.8.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"wait-on": "^5.3.0",
"webpack-dev-server": "^3.11.2"
}
}