-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
130 lines (130 loc) · 3.75 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
{
"name": "cjworkbench",
"version": "1.0.0",
"description": "Computational Journalism Workbench",
"main": "index.js",
"dependencies": {
"@popperjs/core": "^2.9.2",
"@stripe/stripe-js": "^1.15.1",
"base64-js": "^1.5.1",
"bootstrap": "^4.6.0",
"clustring": "0.0.10",
"d3-format": "^2.0.0",
"debounce": "^1.2.1",
"fast-deep-equal": "^3.1.3",
"filesize": "^6.3.0",
"js-cookie": "^2.2.1",
"react-dom-confetti": "^0.2.0",
"react-markdown": "^6.0.2",
"react-popper": "^2.2.5",
"react-redux": "^7.2.4",
"react-select": "^3.2.0",
"react-window": "^1.8.6",
"redux": "^4.1.0",
"redux-promise-middleware": "^6.1.2",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"tus-js-client": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.14.6",
"@lingui/cli": "^3.10.2",
"@lingui/loader": "^3.10.2",
"@lingui/macro": "^3.10.2",
"@lingui/react": "^3.10.2",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/react": "^17.0.11",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.2",
"abort-controller": "^3.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^3.1.0",
"bootstrap.native": "^3.0.14",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.6",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"file-loader": "^6.2.0",
"jest": "^27.0.5",
"memoize-one": "^5.2.1",
"mini-css-extract-plugin": "^1.6.0",
"node-fetch": "^2.6.1",
"prop-types": "^15.6.2",
"react": "^17.0.2",
"react-ace": "^9.4.1",
"react-dom": "^17.0.2",
"redux-mock-store": "^1.5.4",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"standard": "^16.0.3",
"standard-loader": "^7.0.0",
"style-loader": "^2.0.0",
"svg-react-loader": "^0.4.6",
"typescript": "^4.3.4",
"url-loader": "^4.1.1",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"webpack-manifest-plugin": "^3.1.1"
},
"scripts": {
"test": "jest",
"watchjs": "webpack --mode development --watch",
"compilejs": "webpack --mode production",
"lint": "standard",
"reformat-code": "standard --fix",
"add-locale": "lingui add-locale",
"extract": "lingui extract",
"compile": "lingui compile"
},
"standard": {
"parser": "babel-eslint"
},
"jest": {
"setupFilesAfterEnv": [
"./setupJest.js"
],
"restoreMocks": true,
"slowTestThreshold": 1,
"transformIgnorePatterns": [
"node_modules/(?!(@popperjs)/)"
],
"snapshotSerializers": [
"./node_modules/enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/assets/css/__mocks__/styleMock.js"
},
"testEnvironment": "jsdom",
"transform": {
"\\.jsx?$": "babel-jest",
"\\.po$": "./assets/js/i18n/__mocks__/poFile",
"\\/icons\\/[^/]+\\.svg$": "<rootDir>/assets/icons/__mocks__/svgrTransformer.js"
},
"watchPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"repository": {
"type": "git",
"url": "https://github.com/CJWorkbench/cjworkbench.git"
},
"author": "Adam Hooper <adam@adamhooper.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/CJWorkbench/cjworkbench/issues"
},
"homepage": "https://github.com/CJWorkbench/cjworkbench#readme",
"eslintConfig": {
"root": true
}
}