-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
85 lines (85 loc) · 2.57 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "pollly",
"version": "0.0.1",
"description": "YML Editor used for managing differents translations files",
"main": "src/app.js",
"scripts": {
"dev": "NODE_ENV=dev gulp serve",
"build": "NODE_ENV=production gulp build",
"staging": "NODE_ENV=staging gulp build",
"predeploy": "git checkout master && npm run build && git push origin master && git checkout gh-pages",
"deploy": "rm -rf assets index.html bundle.js && mv dist/* . && git add index.html assets bundle.js && git commit -m 'New realease' && git push origin gh-pages",
"postdeploy": "git checkout master",
"precommit": "lint-staged"
},
"keywords": [
"translation",
"yml"
],
"author": "Antoine Renault <antoine.renault.mmi@gmail.com>",
"license": "ISC",
"lint-staged": {
"*.js": [
"./node_modules/.bin/prettier --single-quote --no-semi --trailing-comma none --write",
"git add"
]
},
"dependencies": {
"angular": "^1.6.1",
"angular-animate": "^1.6.1",
"angular-bootstrap": "^0.12.2",
"angular-bootstrap-colorpicker": "^3.0.23",
"angular-easyfb": "^1.5.1",
"angular-local-storage": "^0.5.2",
"angular-sanitize": "^1.6.1",
"angular-translate": "^2.14.0",
"angular-ui-bootstrap": "^1.3.3",
"angular-ui-router": "^0.4.2",
"clipboard": "^1.7.1",
"file-saver": "^1.3.3",
"jquery": "^3.0.0",
"js-yaml": "^3.8.3",
"ngstorage": "^0.3.11"
},
"devDependencies": {
"angular-mocks": "^1.6.1",
"angular-ui-bootstrap": "^1.3.3",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"babelify": "^7.3.0",
"bootstrap": "^3.3.7",
"browser-sync": "^2.18.7",
"browserify": "^14.0.0",
"browserify-ngannotate": "^2.0.0",
"browserify-shim": "^3.8.13",
"del": "^2.2.2",
"envify": "^4.0.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-connect": "^5.0.0",
"gulp-if": "^2.0.2",
"gulp-jshint": "^2.0.4",
"gulp-less": "^3.3.0",
"gulp-load-plugins": "^1.4.0",
"gulp-minify-css": "^1.2.4",
"gulp-ng-annotate": "^2.0.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "^2.4.0",
"gulp-task-listing": "^1.0.1",
"gulp-util": "^3.0.8",
"gulp-watch": "^4.3.11",
"husky": "^0.13.4",
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"lint-staged": "^3.6.1",
"prettier": "^1.4.4",
"stringify": "^5.1.0",
"through2": "^2.0.3",
"uglifyify": "^3.0.4",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"yargs": "^6.6.0"
}
}