-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
113 lines (113 loc) · 3.62 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
{
"name": "origin-front-admin",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-p -l type-check:watch start:dev",
"start:dev": "webpack-dev-server --config ./config/webpack/dev.js --open",
"build": "run-p -l type-check build:prod",
"build:prod": "npm run clean && webpack --config ./config/webpack/prod.js",
"analyze": "npm run clean && npm run type-check && webpack --config ./config/webpack/analyze.js",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"test": "jest -c ./config/test/jest.js --verbose",
"test:watch": "npm run test -- --watchAll -i",
"clean": "rimraf dist",
"prettier": "prettier {config,src}/**/*{.js,.jsx,.ts,.tsx}",
"prettier:fix": "npm run prettier -- --fix",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lemoncoders/origin-front-employee.git"
},
"author": "Lemoncode",
"license": "MIT",
"homepage": "https://bitbucket.org/lemoncoders/origin-front-employee#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npm run lint:fix",
"pretty-quick — staged",
"git add"
]
},
"dependencies": {
"@lemoncode/fonk": "^1.3.0",
"@lemoncode/fonk-formik": "^4.0.1",
"@lemoncode/fonk-match-field-validator": "^1.0.1",
"@lemoncode/fonk-required-by-field-validator": "^1.0.1",
"@material-ui/core": "4.9.11",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.47",
"axios": "^0.19.0",
"emotion": "^10.0.23",
"final-form": "^4.18.6",
"formik": "^2.1.4",
"graphql-request": "^1.8.2",
"immer": "^6.0.3",
"lodash.flowright": "^3.5.0",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-final-form": "^6.3.3",
"react-hot-loader": "^4.12.18",
"react-promise-tracker": "^2.0.5",
"react-router-dom": "^5.1.2",
"react-spinners": "^0.6.1",
"react-table": "^7.0.4",
"regenerator-runtime": "^0.13.3"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@hot-loader/react-dom": "^16.11.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^24.0.23",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"@types/react-router-dom": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-emotion": "^10.0.23",
"css-loader": "^3.2.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"mini-css-extract-plugin": "^0.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react-test-renderer": "^16.12.0",
"rimraf": "^3.0.0",
"style-loader": "^1.0.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2",
"url-loader": "^3.0.0",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
}
}