-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "@dopplerhq/universal-import-react",
"version": "1.0.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"type": "module",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf ./dist",
"build:watch": "tsc && doppler run --config dev -- vite build --w",
"build:dev": "tsc && doppler run --config dev -- vite build",
"build:staging": "tsc && doppler run --config stg -- vite build",
"build:github-action": "tsc && vite build",
"build:docker": "tsc && doppler run --preserve-env -- vite build",
"build": "tsc && doppler run -- vite build"
},
"dependencies": {
"@dopplerhq/universal-import-core": "1.0.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@types/node": "^18.0.2",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"@vitejs/plugin-react": "^1.3.0",
"rollup-plugin-visualizer": "^5.6.0",
"typescript": "^4.7.4",
"vite": "^5.4.7",
"vite-plugin-dts": "^1.3.1"
}
}