-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.44 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.44 KB
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
{
"name": "acromyrmex",
"version": "1.0.74",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/tcosentino/Acromyrmex.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "7.8.7",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/runtime": "^7.8.7",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "8.0.6",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "^4.1.0",
"eslint-loader": "3.0.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "20.0.4",
"mini-css-extract-plugin": "^0.9.0",
"prettier": "^1.16.4"
},
"dependencies": {
"autoprefixer": "7.1.2",
"bootstrap": "3.3.7",
"case-sensitive-paths-webpack-plugin": "2.3.0",
"chalk": "1.1.3",
"classnames": "^2.2.5",
"css-loader": "0.28.4",
"date-fns": "^2.5.1",
"dotenv": "4.0.0",
"draft-js": "0.11.4",
"draft-js-import-markdown": "1.2.1",
"draft-js-mention-plugin": "3.1.5",
"draft-js-plugins-editor": "3.0.0",
"draft-js-utils": "1.2.0",
"file-loader": "5.1.0",
"font-awesome": "4.7.0",
"fs-extra": "3.0.1",
"html-webpack-plugin": "4.0.0-beta.11",
"immutable": "^3.8.2",
"moment": "2.29.4",
"normalize-scss": "6.0.0",
"object-assign": "4.1.1",
"postcss-flexbugs-fixes": "3.2.0",
"postcss-loader": "2.0.6",
"promise": "8.0.1",
"prop-types": "~15.5.10",
"rc-calendar": "^9.6.0",
"rc-time-picker": "^3.3.1",
"react": "16.13.0",
"react-bootstrap": "0.31.3",
"react-dev-utils": "10.1.0",
"react-dom": "16.13.0",
"react-redux": "4.4.8",
"react-select": "1.2.1",
"react-tether": "2.0.7",
"react-virtualized": "9.9.0",
"redux": "3.6.0",
"redux-form": "7.2.3",
"redux-form-website-template": "0.0.122",
"redux-responsive": "4.3.0",
"redux-thunk": "2.1.0",
"style-loader": "0.18.2",
"underscore": "^1.9.0",
"url-loader": "0.5.9",
"webpack": "4.42.0",
"webpack-dev-server": "3.10.3",
"webpack-manifest-plugin": "2.2.0",
"whatwg-fetch": "2.0.3"
},
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js",
"prettier": "prettier --write 'src/**/*.{js,jsx,md,scss}'",
"lib": "babel src/modules --out-dir lib --copy-files",
"test": "node scripts/test.js --env=jsdom"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js?(x)",
"<rootDir>/src/**/?(*.)(spec|test).js?(x)"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
},
"moduleFileExtensions": [
"web.js",
"js",
"json",
"web.jsx",
"jsx",
"node"
]
}
}