-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·39 lines (39 loc) · 1.17 KB
/
package.json
File metadata and controls
executable file
·39 lines (39 loc) · 1.17 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
33
34
35
36
37
38
39
{
"name": "nd-WordFileEditor",
"version": "0.1.0",
"private": true,
"license": "LicenseRef-LICENSE",
"bundledDependencies": [
"react",
"bootstrap",
"react-dom",
"jquery",
"popper.js",
"@babel/polyfill"
],
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@types/node": "^10.12.10",
"@types/react": "^16.7.13",
"@types/react-dom": "^16.0.11",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.0",
"css-loader": "^1.0.0",
"source-map-loader": "^0.2.3",
"style-loader": "^0.22.1",
"typescript": "^3.1.2",
"url-loader": "^1.1.2",
"webpack": "4.20.2",
"webpack-cli": "3.1.1",
"webpack-dev-server": "^3.7.1",
"webpack-merge": "4.1.4",
"html-webpack-plugin": "^3.2.0",
"dotenv": "^8.0.0"
},
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --config webpack.development.js --no-inline --watch",
"build": "./node_modules/.bin/webpack --config webpack.production.js"
}
}