forked from alchemy-fr/Phraseanet-production-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
155 lines (155 loc) · 5.44 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "phraseanet-production-client",
"version": "0.19.3",
"description": "Phraseanet frontend dependencies",
"scripts": {
"clean": "rimraf dist",
"dev": "npm run clean && set NODE_ENV=devlopment && webpack --config ./config/webpack/webpack.development.config.js --progress --profile --colors",
"production": "npm run clean && set NODE_ENV=production && webpack --config ./config/webpack/webpack.production.config.js --progress --profile --colors",
"dist": "./bin/dist",
"test": "npm run test:browser",
"test:server": "mocha --opts config/mocha.opts",
"test:browser": "./node_modules/.bin/karma start --single-run",
"watch:server": "npm run test:server -- --watch",
"watch:browser": "./node_modules/.bin/karma start --auto-watch --no-single-run",
"eslint:source": "eslint ./src/**/*.js",
"eslint:fix": "eslint --fix ./src/**/*.js",
"eslint:common": "eslint ./test/**/*.common.js",
"eslint:server": "eslint ./test/**/*.server.js",
"eslint:browser": "eslint ./test/**/*.browser.js",
"karma:firefox": "./node_modules/.bin/karma start --browsers=Firefox",
"karma:chrome": "./node_modules/.bin/karma start --browsers=Chrome",
"karma:ie": "./node_modules/.bin/karma start --browsers=IE",
"karma:all": "./node_modules/.bin/karma start --browsers=PhantomJS,Chrome,Firefox",
"packages": "npm list --depth=0",
"package:purge": "rm -rf node_modules",
"package:reinstall": "npm run package:purge && npm install",
"package:check": "./node_modules/.bin/ncu",
"package:upgrade": "./node_modules/.bin/ncu -u",
"package:prod": "./node_modules/.bin/ncu -u",
"package:dev": "./node_modules/.bin/ncu -p -u",
"asset-server": "node config/webpack/webpack.hot.assets.config",
"publish-patch": "git add -A && npm run dist && git commit && git push -u origin master && git push --tags && npm version patch && npm publish",
"publish-minor": "git add -A && npm run dist && git commit && git push -u origin master && git push --tags && npm version minor && npm publish",
"postpublish": "git push origin master --follow-tags"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alchemy-fr/Phraseanet-production-client.git"
},
"keywords": [
"phraseanet"
],
"files": [
"dist",
"src"
],
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.0-beta.6",
"babel-loader": "^6.2.4",
"babel-plugin-syntax-jsx": "^6.3.13",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"coveralls": "^2.11.6",
"css-loader": "^0.23.1",
"dotenv": "^2.0.0",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-loader": "^1.2.1",
"eslint-plugin-react": "^4.2.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"imports-loader": "^0.6.5",
"istanbul-instrumenter-loader": "^0.2.0",
"json-loader": "^0.5.4",
"karma": "^0.13.19",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.2",
"karma-cli": "^0.1.2",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.7",
"karma-ie-launcher": "^0.2.0",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.4",
"karma-sinon-chai": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.24",
"karma-webpack": "^1.7.0",
"lodash": "4.6.1",
"lolex": "^1.4.0",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"nodemon": "^1.9.1",
"npm-check-updates": "^2.5.7",
"npmlog": "^2.0.2",
"optimize-css-assets-webpack-plugin": "^1.3.0",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.3",
"postcss-loader": "^0.8.2",
"pre-commit": "^1.1.2",
"resolve-url-loader": "^1.4.3",
"rimraf": "^2.5.1",
"sass-loader": "^3.2.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1",
"webpack-notifier": "1.3.0"
},
"babel": {
"ignore": [
"packages/babel-cli/src/babel-plugin/templates"
]
},
"devEngines": {
"node": ">=4.1 <6",
"npm": ">=3.1 <5"
},
"author": {
"name": "Florian Blouet",
"email": "[email protected]"
},
"bugs": "https://github.com/alchemy-fr/Phraseanet-production-client/issues",
"homepage": "https://github.com/alchemy-fr/Phraseanet-production-client",
"license": "MIT",
"dependencies": {
"axios": "^0.9.1",
"backbone": "^1.3.2",
"blueimp-file-upload": "^9.12.1",
"blueimp-load-image": "^2.6.0",
"bootstrap-multiselect": "^0.9.13-1",
"bootstrap-sass": "^2.3.2",
"es6-promise": "^3.0.2",
"geonames-server-jquery-plugin": "^0.2.2",
"humane-js": "^3.2.2",
"i18next": "^2.1.0",
"i18next-xhr-backend": "^0.5.3",
"jquery": "^1.11.3",
"jquery-lazyload": "^1.9.7",
"jquery-treeview": "https://github.com/alchemy-fr/jquery-treeview.git",
"jquery-ui": "^1.10.5",
"jquery.fancytree": "^2.15.0",
"leaflet": "^0.7.7",
"leaflet-contextmenu": "^1.0.0",
"leaflet-draw": "^0.3.0",
"lodash.merge": "^4.3.5",
"mapbox.js": "^2.4.0",
"phraseanet-common": "^0.2.11",
"rx": "^4.1.0",
"sprintf-js": "^1.0.3",
"underscore": "^1.8.3",
"zxcvbn": "^4.2.0"
}
}