-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 920 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 920 Bytes
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
{
"name": "web",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run build:webpack && npm run build:symlinks",
"build:webpack": "webpack",
"build:symlinks": "npm run build:ln-react && npm run build:ln-react-dom",
"build:ln-react": "ln ./node_modules/react/umd/react.${MODE:-development}.js ./dist/",
"build:ln-react-dom": "ln ./node_modules/react-dom/umd/react-dom.${MODE:-development}.js ./dist/"
},
"author": "Julian Hikaru Payne",
"license": "MIT",
"devDependencies": {
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"clean-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^4.2.0",
"source-map-loader": "^0.2.4",
"ts-loader": "^7.0.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}