-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"private": true,
"workspaces": [
"packages/*"
],
"version": "1.1.2",
"description": "instagram style stories in react js",
"scripts": {
"start:docs": "cd ./packages/documentation/ && yarn start",
"build:stories": "cd ./packages/stories/ && yarn build:watch",
"build:docs": "cd ./packages/documentation/ && yarn build && yarn mv",
"test": "yarn test",
"lint": "eslint . --ext .ts",
"install": "yarn install --frozen-lockfile"
},
"keywords": [
"reactjs",
"typescript",
"instagram",
"stories"
],
"repository": "https://github.com/hannadrehman/stories-react/",
"homepage": "https://hannadrehman.github.io/stories-react/",
"bugs": "https://github.com/hannadrehman/stories-react/issues",
"author": {
"name": "Hannad Rehman",
"email": "[email protected]",
"url": "https://hannadrehman.com"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"dependencies": {
"caniuse-lite": "^1.0.30001460"
}
}