This repository has been archived by the owner on Dec 12, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
129 lines (129 loc) · 4.14 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
{
"name": "cozy-photos",
"version": "3.3.0",
"main": "src/main.jsx",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.js --bail",
"clean": "rm -rf build/*",
"copy:manifest": "install -m0644 package.json README.md LICENSE build",
"deploy": "git-directory-deploy --username Cozy --email contact@cozycloud.cc --directory build/ --repo=https://$GITHUB_TOKEN@github.com/cozy/cozy-photos-v3.git",
"tx": "tx pull --all || true",
"postbuild": "npm run copy:manifest",
"prebuild": "npm-run-all lint clean tx",
"pretest": "npm run lint",
"prewatch": "npm run clean",
"lint": "standard --parser babel-eslint 'src/**/*.js' 'src/**/*.jsx'",
"test": "node_modules/.bin/jest --coverage --config=jest.config.json",
"test:watch": "npm run test -- --watch",
"stack:docker": "docker run --rm -it -p 8080:8080 -v \"$(pwd)/build\":/data/cozy-app/photos cozy/cozy-app-dev",
"watch": "NODE_ENV=development webpack --config webpack.config.js --watch --display-modules --display-chunks",
"watch:standalone": "NODE_ENV=development webpack-dev-server --config webpack.config.js --port 8084 --display-modules --display-chunks --inline --hot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cozy/cozy-photos-v3.git"
},
"author": "Cozy Cloud <contact@cozycloud.cc> (https://cozy.io/)",
"contributors": [
"CPatchane"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/cozy/cozy-photos-v3/issues"
},
"homepage": "https://github.com/cozy/cozy-photos-v3#readme",
"devDependencies": {
"autoprefixer": "^6.5.0",
"babel-core": "^6.0.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^18.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.0.2",
"babel-preset-react": "^6.16.0",
"babel-runtime": "^6.0.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.0",
"css-mqpacker": "^4.0.1",
"csswring": "^5.1.1",
"enzyme": "^2.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"git-directory-deploy": "^1.5.0",
"html-webpack-plugin": "^2.24.0",
"identity-obj-proxy": "^3.0.0",
"imports-loader": "^0.7.0",
"jest": "^20.0.4",
"json-loader": "^0.5.0",
"npm-run-all": "^3.1.0",
"postcss": "^5.2.0",
"postcss-assets-webpack-plugin": "^1.0.0",
"postcss-discard-duplicates": "^2.0.2",
"postcss-loader": "^1.1.0",
"react": "^15.4.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.0",
"react-test-renderer": "^15.4.0",
"redux-logger": "^2.7.4",
"redux-mock-store": "^1.2.1",
"standard": "^8.6.0",
"style-loader": "^0.13.0",
"stylus": "^0.54.0",
"stylus-loader": "^2.4.0",
"svg-sprite-loader": "^0.0.31",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.0",
"webpack-merge": "^1.0.2"
},
"dependencies": {
"classnames": "^2.2.0",
"cozy-bar": "^3.0.1",
"cozy-client-js": "0.3.11",
"cozy-ui": "3.0.0-beta39",
"date-fns": "^1.26.0",
"hammerjs": "^2.0.8",
"justified-layout": "^2.1.0",
"node-polyglot": "^2.2.0",
"piwik-react-router": "^0.8.2",
"pouchdb": "^6.1.2",
"pouchdb-find": "^0.10.5",
"preact": "^8.1.0",
"preact-compat": "^3.14.3",
"prop-types": "^15.5.10",
"react-autosuggest": "^9.3.1",
"react-copy-to-clipboard": "^5.0.0",
"react-redux": "^5.0.2",
"react-router": "^3.0.0",
"react-virtualized": "^9.7.5",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"styl"
],
"moduleNameMapper": {
"\\.(png|gif|jpe?g|svg)$": "<rootDir>/test/__mocks__/fileMock.js",
"styles": "identity-obj-proxy"
},
"transformIgnorePatterns": [
"node_modules/(?!cozy-ui)"
],
"globals": {
"cozy": {}
}
},
"standard": {
"env": [
"browser",
"jest"
]
}
}