-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.28 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
{
"name": "ezgeo-typeahead",
"version": "0.2.2",
"main": "src/index.ts",
"scripts": {
"start": "npm run serve:dev",
"serve": "npm run serve:dev",
"serve:dev": "webpack-dev-server --mode development --config ./webpack.config.js --inline --progress",
"serve:prod": "cross-env NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --inline --progress --content-base dist/",
"build": "npm run build:dev",
"build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details",
"build:prod": "cross-env NODE_ENV=production webpack --mode production --config ./webpack.config.js --progress --color --display-error-details --bail"
},
"license": "MIT",
"devDependencies": {
"@types/jquery": "^3.3.6",
"awesome-typescript-loader": "^5.2.1",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.0.1",
"css-loader": "^1.0.0",
"ejs-loader": "^0.3.0",
"eslint": "^5.4.0",
"html-loader": "^0.5.5",
"jquery": "^3.3.1",
"source-map-loader": "^0.2.1",
"style-loader": "^0.22.1",
"tslint-loader": "^3.5.3",
"typescript": "^3.0.1",
"webpack": "^4.17.0",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"@types/node": "^10.9.4"
}
}