-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.66 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
{
"name": "react-parcel-boilerplate",
"version": "1.0.0",
"description": "Boilerplate to create react app with parcel",
"main": "src/index.html",
"author": "Frederic Godin",
"license": "MIT",
"engines": {
"node": ">=11.7.0"
},
"engineStrict": true,
"scripts": {
"start": "parcel src/index.html",
"check-types": "tsc --noEmit",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"test": "jest",
"build": "rm -rf ./dist && parcel build src/index.html",
"pre-commit": "lint-staged",
"commit": "yarn pre-commit && git-cz"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"alias": {
"src": "./src"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"autoprefixer": "^9.7.4",
"commitizen": "^4.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.18.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"node-sass": "^4.13.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"parcel-plugin-compress": "^1.1.0",
"parcel-plugin-css-modules-type-generator": "^1.2.0",
"parcel-plugin-svg-sprite": "^1.4.1",
"postcss-modules": "^1.5.0",
"prettier": "^1.19.1",
"sass": "^1.26.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"dependencies": {
"react": "^16.13.0",
"react-dom": "^16.13.0"
},
"svgSpriteOptions": {
"exclude": [
"**/fonts/**/*"
]
}
}