-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.64 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
{
"name": "matteo-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.tsx",
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --config webpack.config.js",
"webpack": "webpack",
"test": "jest",
"cypress:open": "cypress open",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write ."
},
"keywords": [],
"author": "Matteo <matteozaratti@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"cypress": "^7.6.0",
"eslint-config-prettier": "^8.5.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"image-webpack-loader": "^7.0.1",
"jest": "^27.0.6",
"json-loader": "^0.5.7",
"node-sass": "^6.0.1",
"path": "^0.12.7",
"prettier": "2.8.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.0.0",
"ts-loader": "^9.2.3",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.3.5"
},
"repository": "https://github.com/mz4/z-boilerplate.git"
}