-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.3 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.3 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
{
"name": "@msinternal/isomorphic-react",
"description": "Exports window.React if available, otherwise, exports require('react').",
"version": "0.0.0-0",
"main": "dist/react.js",
"private": true,
"scripts": {
"build": "npm run --if-present build:pre && npm run build:run && npm run --if-present build:post",
"build:pre": "npm run build:pre:local-dependencies",
"build:pre:local-dependencies": "../../scripts/npm/build-local-dependencies.sh",
"build:run": "npm run build:run:babel && npm run build:run:webpack && touch ./package.json",
"build:run:babel": "babel src --out-dir lib --verbose",
"build:run:webpack": "webpack-cli",
"bump": "vg bump prod && vg bump dev && (npm audit fix || exit 0)",
"eslint": "npm run precommit",
"postversion": "../../scripts/npm/postversion.sh",
"precommit": "npm run precommit:eslint -- src",
"precommit:eslint": "../../node_modules/.bin/eslint --report-unused-disable-directives --max-warnings 0",
"preversion": "../../scripts/npm/preversion.sh"
},
"author": "Microsoft Corporation",
"license": "MIT",
"pinDependencies": {},
"localDependencies": {},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
}
}