-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.16 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
{
"name": "04-boilerplate-front",
"version": "1.0.0",
"description": "Member project",
"main": "index.js",
"scripts": {
"start": "run-p -l type-check:watch start:dev",
"start:dev": "webpack serve --config ./config/webpack/dev.js",
"build": "run-p -l type-check build:prod",
"build:prod": "npm run clean && webpack --config ./config/webpack/prod.js",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"clean": "rimraf dist",
"test": "jest -c ./config/test/jest.js --verbose",
"test:watch": "npm run test -- --watchAll -i --no-cache",
"build:dev": "npm run clean && webpack --config ./config/webpack/dev.js",
"deploy": "gh-pages -d dist"
},
"author": "Lemoncode",
"license": "MIT",
"dependencies": {
"@emotion/css": "^11.7.1",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@lemoncode/fonk": "^1.5.1",
"@lemoncode/fonk-formik": "^4.0.1",
"@mui/material": "^5.4.4",
"axios": "^0.26.0",
"formik": "^2.2.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.2",
"regenerator-runtime": "^0.13.9"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@emotion/babel-plugin": "^11.7.2",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@types/react-router-dom": "^5.3.3",
"babel-loader": "^8.2.3",
"dotenv-webpack": "^7.1.0",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2",
"url-loader": "^4.1.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
}
}