-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 1.16 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
{
"name": "aviary-lint",
"version": "0.0.1",
"description": "Find and fix missing tokens in your designs before handoff",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"watch": "/usr/local/bin/node node_modules/.bin/webpack --mode=development --watch",
"otherthing": " node_modules/.bin/webpack --mode=development --watch"
},
"dependencies": {
"classnames": "^2.2.6",
"framer-motion": "^6.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hint": "^3.2.1",
"react-tooltip": "^5.11.1"
},
"author": "Fullscript",
"devDependencies": {
"@figma/plugin-typings": "^1.88.0",
"@types/node": "^20.11.30",
"@types/react": "^16.8.24",
"@types/react-dom": "^16.8.5",
"css-loader": "^3.1.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.18.2",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.4",
"typescript": "^5.4.3",
"url-loader": "^2.1.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,css,json}": [
"prettier --write",
"git add"
]
}
}