generated from remnoteio/remnote-plugin-template-react
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.57 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
{
"private": true,
"name": "remnote-plugin-embed-tweet",
"version": "1.2.0",
"license": "MIT",
"scripts": {
"check-types": "tsc",
"dev": "cross-env NODE_ENV=development webpack-dev-server --color --progress --no-open",
"build": "npx remnote-plugin validate && shx rm -rf dist && cross-env NODE_ENV=production webpack --color --progress && shx cp README.md dist && cd dist && bestzip ../PluginZip.zip ./*",
"test": "npx jest",
"test:watch": "npx jest --watch"
},
"dependencies": {
"@remnote/plugin-sdk": "^0.0.18",
"debounce": "^1.2.1",
"nanoid": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-twitter-widgets": "^1.11.0"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@types/debounce": "^1.2.1",
"@types/jest": "^29.5.2",
"@types/node": "^18.0.3",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"autoprefixer": "^10.4.7",
"bestzip": "^2.2.1",
"concurrently": "^7.2.2",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"esbuild-loader": "^2.19.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.14",
"postcss-import": "^14.1.0",
"postcss-loader": "^7.0.0",
"react-refresh": "^0.14.0",
"shx": "^0.3.4",
"style-loader": "^3.3.1",
"tailwindcss": "^3.1.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}