-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 3.31 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@harborschool/lighthouse",
"version": "1.0.26",
"description": "",
"keywords": [
"react",
"design-system",
"framer"
],
"main": "dist/lighthouse.umd.js",
"module": "dist/lighthouse.es5.js",
"typings": "dist/types/lighthouse.d.ts",
"files": [
"dist"
],
"author": "ruucm <ruucm.a@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/harbor-school/lighthouse"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint '{src,documentation-site,examples,lighthouse-gallery.framerfx/code}/**/*.{js,ts,tsx}' --quiet --fix",
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && rollup -=c rollup.config.mjs",
"dev": "rollup -c rollup.config.mjs --w",
"framer": "cd lighthouse-gallery.framerfx && component-importer generate --force && rm code/withHOC.tsx && cd .. && eslint '{src,lighthouse-gallery.framerfx/code}/**/*.{js,ts,tsx}' --quiet --fix",
"precommit": "lint-staged",
"docs:dev": "next documentation-site",
"docs:build": "next build documentation-site",
"docs:export": "next export documentation-site",
"docs:deploy": "npm run docs:build && npm run docs:export && cp -r .vercel documentation-site/out/.vercel && vercel --prod ./documentation-site/out"
},
"lint-staged": {
"{src,lighthouse-gallery.framerfx/code}/**/*.{js,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.10.5",
"@framerjs/component-importer": "^0.0.32",
"@mdx-js/loader": "^1.6.18",
"@microsoft/tsdoc": "^0.12.21",
"@next/mdx": "^9.5.3",
"@types/node": "^10.11.0",
"@types/react": "^18.2.25",
"@types/styletron-engine-atomic": "^1.1.0",
"@types/styletron-react": "^5.0.2",
"@types/styletron-standard": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"copy-to-clipboard": "^3.3.1",
"cross-env": "^5.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"framer-motion": "4.1.11",
"husky": "^1.0.1",
"lint-staged": "^10.3.0",
"lodash.camelcase": "^4.3.0",
"next": "9.5.3",
"next-seo": "^4.11.0",
"next-transpile-modules": "^4.1.0",
"prettier": "^2.1.1",
"prism-react-renderer": "^1.1.1",
"prompt": "^1.0.0",
"raw-loader": "^4.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-shadow-picker": "^1.0.5",
"react-view": "^2.3.2",
"recoil": "^0.0.13",
"remark": "^12.0.0",
"remark-html": "^12.0.0",
"replace-in-file": "^3.4.2",
"rimraf": "^2.6.2",
"rollup": "^4.0.2",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-visualizer": "^4.1.1",
"shelljs": "^0.8.3",
"styletron-engine-atomic": "^1.4.6",
"styletron-react": "^5.2.7",
"ts-node": "^7.0.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"peerDependencies": {
"framer-motion": "^2.1.0",
"react": "^16.13.1"
},
"dependencies": {
"react-hook-form": "^6.3.0",
"react-is": "^16.13.1"
}
}