-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
111 lines (111 loc) · 4.03 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
{
"name": "jamespot-react-boilerplate",
"version": "1.0.1",
"description": "",
"private": true,
"scripts": {
"dev": "webpack --env NODE_ENV=development",
"local": "webpack s --env NODE_ENV=development",
"build": "webpack --env NODE_ENV=production",
"build-theme": "webpack --env NODE_ENV=theme",
"build-dev-vm": "webpack --env NODE_ENV=development NODE_RUN=VM",
"watch-dev-vm": "webpack --env NODE_ENV=development NODE_RUN=VM WATCH=true",
"prettier": "npx prettier --write ./",
"lint": "npx eslint ./src/ --ext .ts,.tsx",
"lint:fix": "npx eslint ./src/ --ext .ts,.tsx --fix ",
"lint:ci": "npx eslint --output-file eslint_report.json --format json . --ext .ts,.tsx,.js",
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:update:snapshot": "jest --updateSnapshot",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"devDependencies": {
"@babel/core": "^7.12.8",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@reduxjs/toolkit": "^1.7.1",
"@types/enzyme": "^3.10.5",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.3.3",
"@types/react-table": "^7.7.3",
"@types/react-test-renderer": "^17.0.1",
"@types/redux-actions": "^2.6.2",
"@types/redux-form": "^8.2.7",
"@types/redux-mock-store": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.1",
"babel-plugin-styled-components": "^1.12.0",
"core-js": "^3.20.3",
"css-loader": "^6.6.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.5.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"jest-styled-components": "^7.0.3",
"lint-staged": "^12.0.2",
"prettier": "^2.4.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-select": "^3.2.0",
"react-test-renderer": "^17.0.1",
"redux-thunk": "2.3.0",
"source-map-loader": "^1.0.1",
"style-loader": "^1.2.1",
"ts-jest": "^27.0.7",
"ts-loader": "^8.0.2",
"typescript": "^4.4.4",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"dependencies": {
"@types/react-select": "^3.1.2",
"@types/styled-components": "^5.1.4",
"@types/uuid": "^8.3.1",
"babel-plugin-react-intl": "^8.1.1",
"dot-prop-immutable": "^2.1.0",
"escape-string-regexp": "^1.0.5",
"file-loader": "^6.2.0",
"jamespot-react-components": "^1.0.105",
"jamespot-react-core": "^1.1.75",
"jamespot-user-api": "^1.0.79",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.25.0",
"react-intl": "^5.8.6",
"react-redux": "^7.2.3",
"react-router-dom": "^6.2.1",
"react-table": "^7.7.0",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-form": "^8.3.8",
"redux-mock-store": "^1.5.4",
"styled-components": "^5.2.1",
"url-search-params-polyfill": "^8.1.0",
"uuid": "^8.3.2"
},
"lint-staged": {
"!(jest.setup.tsx)*.{js,jsx,ts,tsx}": [
"npm run lint:fix",
"npm run prettier"
],
"*.{json,md}": [
"npm run prettier"
]
}
}