-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
42 lines (42 loc) · 971 Bytes
/
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
{
"name": "@sample/app",
"version": "1.0.0",
"type": "module",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "npm run bundle:prod",
"bundle:prod": "webpack --mode production",
"bundle:dev": "webpack --mode development --devtool source-map",
"test": "node --test --enable-source-maps",
"start": "webpack serve --mode development --open",
"prepack": "npm run build"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"@sample/components": "^1.0.0",
"sanitize.css": "^13.0.0"
},
"files": [
"dist",
"src",
"!dist/test",
"!dist/tsconfig.tsbuildinfo",
"!src/tsconfig.json"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:wixplosives/sample-monorepo.git",
"directory": "packages/app"
},
"private": true,
"publishConfig": {
"access": "public"
}
}