-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
139 lines (139 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "rosalind-webpack",
"version": "0.0.1",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@artsy/palette": "31.2.0",
"@babel/runtime": "^7.22.10",
"@types/react": "^16.0.0",
"@types/react-dom": "^16.0.0",
"babel-plugin-macros": "^3.1.0",
"chrono-node": "1.3.11",
"compression-webpack-plugin": "^10.0.0",
"copy-to-clipboard": "3.2.0",
"lodash.defaults": "4.2.0",
"lodash.intersection": "4.4.0",
"lodash.pickby": "4.6.0",
"lodash.zipobject": "4.1.3",
"moment": "2.29.4",
"prop-types": "15.7.2",
"raf": "3.4.1",
"react": "16.8.6",
"react-autosuggest": "9.4.3",
"react-dom": "16.8.6",
"shakapacker": "7.0.3",
"styled-components": "4.4.1",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "8.4.0",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-assets-manifest": "^5.1.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0",
"webpack-sources": "^3.2.3",
"whatwg-fetch": "^3.6.17"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@babel/cli": "7.7.7",
"@babel/core": "^7.22.10",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-dynamic-import": "7.7.4",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/polyfill": "7.7.0",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "7.7.4",
"@babel/preset-typescript": "^7.18.6",
"@storybook/addon-actions": "6.4.19",
"@storybook/addon-links": "6.4.19",
"@storybook/addons": "6.4.19",
"@storybook/react": "6.4.19",
"@types/lodash.defaults": "^4.2.7",
"@types/lodash.intersection": "^4.4.7",
"@types/lodash.pickby": "^4.6.7",
"@types/lodash.zipobject": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"@webpack-cli/serve": "^2.0.5",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-loader": "^9.1.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-module-resolver": "4.1.0",
"babel-plugin-styled-components": "1.10.6",
"css-loader": "3.4.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-inclusive-language": "^2.1.1",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.17.0",
"file-loader": "5.0.2",
"husky": "3.1.0",
"jest": "24.9.0",
"jest-styled-components": "6.3.4",
"json-loader": "0.5.7",
"lint-staged": "9.5.0",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "1.19.1",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.8.6",
"stats-webpack-plugin": "0.7.0",
"style-loader": "1.1.2",
"webpack-dev-server": "^4.15.1"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/webpack/__mocks__/fileMock.js",
"\\.(css|less|scss)$": "<rootDir>/webpack/__mocks__/styleMock.js"
},
"testPathIgnorePatterns": [
"/config/",
"/node_modules/",
"/vendor/bundle/"
],
"setupFilesAfterEnv": [
"<rootDir>/app/javascript/test/setup.js"
],
"testURL": "http://localhost"
},
"scripts": {
"lint": "eslint app/javascript --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"test:watch": "jest --watch",
"test:verbose": "jest --verbose",
"storybook": "./scripts/check_for_server.rb && NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006",
"build-storybook": "build-storybook",
"type-check": "tsc --noEmit"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn type-check"
}
},
"lint-staged": {
"app/javascript/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
],
"**/*.rb": [
"bundle exec standardrb --fix",
"git add"
]
}
}