-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.23 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "i18-gui",
"version": "1.0.0",
"description": "",
"main": "src/assets/ts/main.ts",
"scripts": {
"build": "./node_modules/.bin/webpack --config webpack.config.js",
"tsc": "tsc src/*.ts --target ES5 --outFile dist/bundle.js",
"autotsc": "tsc --watch src/*.ts --target ES5 --outFile dist/bundle.js",
"build-dev": "webpack -d --config webpack.config.js && cp src/index.html dist/index.html && webpack-dev-server --hot --inline --colors --progress --content-base src/",
"build-prod": "webpack -p --config webpack.config.js && cp src/index.html dist/index.html"
},
"author": {
"name": "KULDIP PIPALIYA",
"email": "kuldipem@gmail.com",
"url": "http://www.vedhaslabs.com"
},
"license": "ISC",
"devDependencies": {
"@types/jquery": "^3.2.9",
"@types/lodash": "^4.14.71",
"@types/node": "^8.0.17",
"awesome-typescript-loader": "^3.2.2",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015-native-modules": "^6.9.4",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.4",
"expose-loader": "^0.7.3",
"extract-loader": "^1.0.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"image-webpack-loader": "^3.3.1",
"less": "^3.0.0-alpha.3",
"less-loader": "^4.0.5",
"license-banner-webpack-plugin": "0.0.4",
"postcss-loader": "^2.0.7",
"source-map-loader": "^0.2.1",
"style-loader": "^0.18.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"ts-loader": "^2.3.2",
"ts-node": "^3.3.0",
"typescript": "^2.4.2",
"typestyle": "^1.3.7",
"typings": "^2.1.1",
"uglifyjs-webpack-plugin": "^0.4.6",
"url-loader": "^0.5.9",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1",
"webpack-manifest-plugin": "^1.2.1",
"wrench": "^1.5.9"
},
"dependencies": {
"body-parser": "^1.13.3",
"bootstrap": "^4.0.0-beta",
"compression": "^1.5.2",
"cors": "^2.7.1",
"express": "^4.13.3",
"file-saver": "^1.3.3",
"flip": "^1.0.0",
"jquery": "^3.2.1",
"jszip": "^3.1.4",
"morgan": "^1.8.0",
"popper.js": "^1.12.5",
"resource-router-middleware": "^0.6.0"
}
}