-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
97 lines (97 loc) · 3.37 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
{
"scripts": {
"i18n:export": "bundle exec rake i18n:js:export",
"test": "jest",
"lint:js": "eslint --ext .js,.jsx",
"lint:react": "yarn run lint:js app/javascript/",
"lint:backbone": "yarn run lint:js app/assets/javascripts/ --ignore-pattern app/assets/javascripts/legacy/",
"lint:legacy": "yarn run lint:js app/assets/javascripts/legacy/",
"lint:scss": "stylelint app/assets/stylesheets/",
"sentry:setup": "echo \"[defaults]\nproject=nemo\norg=sassafras\" > ~/.sentryclirc && sentry-cli login",
"sentry:tag": "if [[ ! -f ~/.sentryclirc ]]; then echo \"Please run sentry:setup first.\"; exit; fi; echo \"Setting v`cat VERSION` on Sentry to current HEAD...\"; sentry-cli releases set-commits \"nemo@`cat VERSION`\" --auto"
},
"jest": {
"testEnvironment": "jsdom",
"roots": [
"<rootDir>/app/javascript"
],
"setupFilesAfterEnv": [
"<rootDir>/app/javascript/setupTests.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testRegex": "/app/javascript/.*\\.test\\.jsx?$",
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"moduleNameMapper": {
"\\.css$": "<rootDir>/app/javascript/__mocks__/style-mock.js"
}
},
"resolutions": {
"@xmldom/xmldom": "0.7.6"
},
"dependencies": {
"@babel/core": "7.19.0",
"@babel/helper-string-parser": "7.18.10",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.19.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.18.9",
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.18.10",
"@babel/preset-env": "7.19.0",
"@babel/preset-react": "7.18.6",
"@babel/runtime": "7.19.0",
"@rails/webpacker": "5.4.3",
"@sentry/react": "6.16.1",
"@sentry/tracing": "6.16.1",
"babel-loader": "8.2.5",
"core-js": "3.25.1",
"css-loader": "4.2.2",
"enketo-core": "sassafrastech/enketo#enketo-core-8.3.1-fixGetters2",
"ignore-loader": "0.1.2",
"jquery": "3.6.0",
"lodash": "4.17.21",
"mobx": "5.15.6",
"mobx-react": "5.4.3",
"moment": "2.29.4",
"prop-types": "15.8.0",
"query-string": "6.13.1",
"react": "16.13.0",
"react-bootstrap": "1.3.0",
"react-dates": "21.8.0",
"react-select2-wrapper": "sassafrastech/react-select2-wrapper#2019-03-08-select2Full",
"react_ujs": "2.6.1",
"regenerator-runtime": "0.13.9",
"style-loader": "1.2.1",
"webpack": "4.*",
"webpack-cli": "4.10.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.18.9",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.7",
"@sentry/cli": "1.71.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "27.4.5",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"enzyme-to-json": "3.6.2",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-cooperka": "1.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"i18n-js": "3.8.0",
"jest": "27.4.5",
"react-dom": "16.13.0",
"react-refresh": "0.14.0",
"stylelint": "15.10.1",
"stylelint-config-sass-guidelines": "7.0.0",
"webpack-dev-server": "4.11.0"
}
}