-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
87 lines (87 loc) · 2.97 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
{
"name": "sei_trello",
"version": "1.0.0",
"description": "Integração SEI e Trello",
"main": "index.js",
"browserslist": "defaults",
"scripts": {
"webpack:dev": "NODE_ENV=development npx webpack --config webpack.config.js",
"webpack:dev:watch": "NODE_ENV=development npx webpack --config webpack.config.dev.watch.js --watch",
"webpack:prod": "NODE_ENV=production npx webpack --config webpack.config.prod.js",
"webpack:test": "NODE_ENV=test npx webpack --config webpack.config.js",
"webpack:test:watch": "NODE_ENV=test npx webpack --config webpack.config.js --watch",
"lint": "npx eslint .",
"test": "npx jest",
"test:e2e": "npx jest --selectProjects 'E2E Tests'",
"build": "./build.js",
"playground": "npx webpack serve --config webpack.config.playground.js",
"docs:build": "npx posthtml -c src/docs/posthtml.config.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.19",
"autoprefixer": "^10.4.13",
"autosize": "^5.0.2",
"axios": "^0.24.0",
"axios-mock-adapter": "^1.21.2",
"babel-loader": "^8.3.0",
"babel-plugin-react-remove-properties": "^0.3.0",
"classnames": "^2.3.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"core-js": "^3.27.1",
"css-loader": "^6.7.3",
"date-fns": "^2.29.3",
"dragula": "^3.7.3",
"eslint": "^8.32.0",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-puppeteer": "^6.2.0",
"jest-styled-components": "^7.1.1",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.7.2",
"node-sass": "^7.0.3",
"postcss": "^8.4.21",
"postcss-loader": "^6.2.1",
"posthtml": "^0.16.6",
"posthtml-cli": "^0.10.0",
"posthtml-expressions": "^1.11.0",
"posthtml-include": "^1.7.4",
"prettier": "^2.8.3",
"puppeteer": "^11.0.0",
"raw-loader": "^4.0.2",
"react": "^17.0.2",
"react-datepicker": "^4.8.0",
"react-dom": "^17.0.2",
"react-toggle-switch": "^3.0.4",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"styled-components": "^5.3.6",
"sweetalert2": "^11.7.0",
"terser-webpack-plugin": "^5.3.6",
"url-loader": "^4.1.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-ext-reloader": "^1.1.9",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@testing-library/react": "^12.1.5",
"react-refresh": "^0.11.0"
}
}