-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.29 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
{
"private": true,
"name": "jsgettext",
"version": "1.0.0",
"description": "UI tools to work with gettext .po, .mo and .pot files",
"keywords": [
"gettext",
"po",
"pot",
"mo"
],
"author": "Michele Locati",
"license": "MIT",
"dependencies": {
"bootstrap": "^3.3.7",
"file-saver": "^1.3.3",
"font-awesome": "^4.7.0",
"jquery": "^2.2.4",
"jquery-ui": "~1.12.1",
"jquery-ui-twbs-less": "github:dc-development/jquery-ui-less",
"text-encoding": "^0.6.4"
},
"devDependencies": {
"@types/bootstrap": "^3.3.34",
"@types/file-saver": "0.0.1",
"@types/jquery": "^2.0.46",
"@types/jqueryui": "^1.11.34",
"@types/text-encoding": "0.0.30",
"less": "^2.7.2",
"less-plugin-clean-css": "^1.5.1",
"ts-loader": "^2.1.0",
"typescript": "^2.3.4",
"webpack": "^3.0.0",
"ajv":"^5.2.0"
},
"scripts": {
"build-js": "webpack --colors --optimize-minimize",
"build-js-debug": "webpack --progress --colors --devtool cheap-eval-source-map",
"watch-js": "webpack --progress --colors --watch --devtool cheap-eval-source-map",
"build-css": "lessc -clean-css=\"--advanced --keep-line-breaks --compatibility=\" src/app.less docs/assets/app.css",
"build-css-debug": "lessc --lint src/app.less docs/assets/app.css"
}
}