-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "react-loading-iframe",
"version": "1.1.0",
"description": "",
"source": "src/index.tsx",
"main": "dist/main.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "parcel watch",
"build": "parcel build",
"clean": "rm -rf dist .parcel-cache",
"clean:build": "npm run clean && npm run build",
"clean:install": "npm run clean && rm -rf node_modules && npm i",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [],
"author": "Stijn de Ligt <[email protected]>",
"license": "ISC",
"devDependencies": {
"@parcel/packager-ts": "^2.6.0",
"@parcel/transformer-typescript-types": "^2.6.0",
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"i": "^0.3.7",
"npm": "^8.11.0",
"parcel": "^2.6.0",
"prettier": "^2.6.2",
"typescript": "^4.7.2"
},
"dependencies": {
"@parcel/transformer-typescript-tsc": "^2.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"peerDependencies": {
"react": "^17.0.2"
}
}