-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
39 lines (39 loc) · 1.34 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
38
39
{
"name": "thresh-template",
"version": "1.2.0",
"main": "index.ts",
"scripts": {
"dev": "cross-env NODE_ENV=development HOT_UPDATE=true webpack-dev-server --config webpack/webpack.config.js",
"prod": "cross-env NODE_ENV=production HOT_UPDATE=true webpack-dev-server --config webpack/webpack.config.js",
"build": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.js"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.7",
"@babel/runtime": "^7.7.7",
"@babel/runtime-corejs3": "^7.9.2",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"cross-env": "^6.0.3",
"expose-loader": "^0.7.5",
"file-loader": "^5.0.2",
"ts-loader": "^6.2.1",
"tslib": "^1.10.0",
"typescript": "^3.7.2",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-replace-loader": "^1.3.0"
},
"dependencies": {
"thresh-lib": "^1.2.0"
}
}