-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
{
"name": "@davidfloegel/react-magic-skeleton",
"version": "0.1.0-1",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/davidfloegel/react-magic-skeleton.git"
},
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"test": "jest ---passWithNoTests",
"lint": "eslint . --ext .ts,.tsx",
"check-types": "tsc --noEmit",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@parcel/packager-ts": "^2.2.1",
"@parcel/transformer-typescript-types": "^2.2.1",
"@storybook/addon-actions": "^6.4.14",
"@storybook/addon-essentials": "^6.4.14",
"@storybook/addon-links": "^6.4.14",
"@storybook/react": "^6.4.14",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"babel-jest": "^27.4.6",
"babel-loader": "^8.2.3",
"eslint": "^8.7.0",
"jest": "^27.4.7",
"parcel": "^2.2.1",
"react-hooks-testing-library": "^0.6.0",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": ">=3.0.0"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}