forked from cozy/cozy-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.76 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
{
"name": "cozy-settings",
"version": "1.3.0",
"main": "src/index.jsx",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.js",
"clean": "rm -rf build",
"copy:manifest": "install -m0644 package.json README.md LICENSE build",
"cozyPublish": "cozy-scripts publish --token $REGISTRY_TOKEN --prepublish downcloud --postpublish mattermost",
"deploy": "git-directory-deploy --username Cozy --email [email protected] --directory build/ --repo=https://[email protected]/cozy/cozy-settings.git",
"tx": "tx pull --all || true",
"postbuild": "npm run copy:manifest",
"prebuild": "npm-run-all clean tx",
"prewatch": "npm run clean",
"lint": "standard 'src/**/*.js' 'src/**/*.jsx'",
"test": "jest",
"stack:docker": "docker run --rm -it -p 8080:8080 -v \"$(pwd)/build\":/data/cozy-app/settings cozy/cozy-app-dev",
"watch": "NODE_ENV=development webpack --config webpack.config.js --watch --display-modules --display-chunks",
"watch:server": "NODE_ENV=development webpack-dev-server --config webpack.config.js --port 8090 --display-modules --display-chunks --inline --hot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cozy/cozy-settings.git"
},
"author": "Cozy Cloud <[email protected]> (https://cozy.io/)",
"contributors": [
"CPatchane"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/cozy/cozy-settings/issues"
},
"homepage": "https://github.com/cozy/cozy-settings#readme",
"devDependencies": {
"autoprefixer": "^6.5.0",
"babel-core": "^6.0.0",
"babel-jest": "^18.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-class-properties": "^6.22.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",
"chai": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"cozy-bar": "^4.8.5",
"cozy-client-js": "^0.9.0",
"css-loader": "^0.26.0",
"css-mqpacker": "^4.0.1",
"csswring": "^5.1.1",
"enzyme": "^2.7.0",
"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.1",
"jest": "^18.0.0",
"json-loader": "^0.5.0",
"npm-run-all": "^3.1.0",
"postcss": "^5.2.0",
"postcss-discard-duplicates": "^2.0.2",
"postcss-loader": "^1.1.0",
"pug": "^2.0.0-beta6",
"pug-loader": "^2.3.0",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-markdown": "^2.4.4",
"react-test-renderer": "^15.4.0",
"sinon": "^1.17.0",
"standard": "^8.6.0",
"style-loader": "^0.13.0",
"stylus": "^0.54.0",
"stylus-loader": "^2.4.0",
"svg-sprite-loader": "^0.0.31",
"url-loader": "^0.5.9",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.0",
"webpack-merge": "^1.0.2",
"yaml-loader": "^0.5.0"
},
"dependencies": {
"classnames": "^2.2.0",
"cozy-scripts": "0.10.4",
"cozy-ui": "10.2.0",
"date-fns": "^1.27.2",
"piwik-react-router": "^0.8.2",
"preact": "^8.1.0",
"preact-compat": "^3.16.0",
"react-redux": "^5.0.2",
"react-router-dom": "^4.2.2",
"redux": "^3.6.0",
"redux-logger": "^2.8.1",
"redux-thunk": "^2.2.0",
"user-agent-parser": "^0.6.0",
"whatwg-fetch": "^2.0.1"
},
"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)"
]
}
}