forked from DBJRdev/ditt-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.24 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
{
"private": true,
"version": "0.1.0",
"name": "ditt-client",
"description": "DBJR Internal Time Tracking application developed by VisionApps",
"main": "src/main.jsx",
"dependencies": {
"@react-ui-org/react-ui": "^0.25.0",
"history": "^4.10.1",
"i18next": "^19.1.0",
"immutable": "^3.8.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"moment-timezone": "^0.5.27",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-i18next": "^11.3.1",
"react-immutable": "^0.1.3",
"react-immutable-proptypes": "^2.1.0",
"react-pointable": "^1.1.3",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-api-middleware": "^3.2.0",
"redux-devtools-extension": "^2.13.8",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"shortid": "^2.2.15",
"validator": "^12.2.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"@visionappscz/eslint-config-visionapps": "^1.1.2",
"@visionappscz/stylelint-config-visionapps": "^1.1.0",
"@visionappscz/stylelint-config-visionapps-order": "^1.1.0",
"autoprefixer": "^9.7.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"core-js": "^3.6.4",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"fetch-mock": "^8.3.2",
"file-loader": "^5.0.2",
"identity-obj-proxy": "^3.0.0",
"image-webpack-loader": "^6.0.0",
"jest": "^25.1.0",
"node-sass": "^4.13.1",
"postcss-flexbugs-fixes": "^4.2.0",
"postcss-loader": "^3.0.0",
"redux-mock-store": "^1.5.4",
"sass-loader": "^8.0.2",
"sinon": "^8.1.1",
"style-loader": "^1.1.3",
"stylelint": "^13.0.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-order": "^4.0.0",
"stylelint-webpack-plugin": "^1.2.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.2",
"whatwg-fetch": "^3.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleNameMapper": {
"\\.(scss)$": "identity-obj-proxy",
"\\.(svg)$": "<rootDir>/tests/mocks/emptyMock.js"
},
"setupFiles": [
"<rootDir>/tests/setupJest.js"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setupEnzyme.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"verbose": true
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"scripts": {
"build": "webpack --mode production",
"eslint": "eslint --ext js,jsx src",
"start": "webpack-dev-server --mode development",
"test": "stylelint \"src/**/*.scss\" \"public/css/*.css\" --config stylelint.config.js && eslint --ext js,jsx src && jest",
"jest": "jest"
}
}