-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.42 KB
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
{
"name": "react-wizard",
"version": "1.0.0",
"description": "assignment",
"scripts": {
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --quiet",
"dev": "parcel src/index.html",
"build": "parcel build --dist-dir docs src/index.html",
"prod": "rm -rf docs/index* dist/ .parcel-cache/ && yarn build"
},
"author": "Asher Indursky <uixprt@gmail.com>",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "7.12.16",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@parcel/packager-raw-url": "^2.0.1",
"@parcel/transformer-sass": "^2.0.1",
"@parcel/transformer-webmanifest": "^2.0.1",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.1",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "7.18.0",
"eslint-config-prettier": "8.1.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"parcel": "^2.0.1",
"prettier": "2.2.1",
"sass": "^1.43.4",
"typescript": "4.2.2",
"typescript-plugin-css-modules": "^3.4.0"
},
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2"
},
"browserslist": [
"last 2 Chrome versions"
]
}