-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 2.02 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
{
"name": "dispers",
"version": "0.1.0",
"scripts": {
"tx": "tx pull --all || true",
"lint": "yarn lint:js && yarn lint:styles",
"lint:js": "cs lint '{src,test}/**/*.{js,jsx}'",
"lint:styles": "stylint src/styles --config ./.stylintrc",
"prebuild": "yarn lint",
"build": "yarn build:browser",
"build:browser": "cs build --browser",
"build:mobile": "cs build --mobile",
"watch": "yarn watch:browser",
"watch:browser": "cs watch --browser",
"watch:mobile": "cs watch --mobile",
"start": "cs start --hot --browser",
"deploy": "git-directory-deploy --directory build/ --branch ${DEPLOY_BRANCH:-build} --repo=${DEPLOY_REPOSITORY:-https://[email protected]/tintinmar1995/cozy-dispers-app.git}",
"test": "cs test --verbose --coverage",
"cozyPublish": "git fetch origin ${DEPLOY_BRANCH:-build}:${DEPLOY_BRANCH:-build} && cs publish --token $REGISTRY_TOKEN --build-commit $(git rev-parse ${DEPLOY_BRANCH:-build})"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tintinmar1995/cozy-dispers-app.git"
},
"author": "",
"contributors": [],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/tintinmar1995/cozy-dispers-app/issues"
},
"homepage": "https://github.com/tintinmar1995/cozy-dispers-app#readme",
"devDependencies": {
"babel-preset-cozy-app": "1.5.2",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.2",
"git-directory-deploy": "1.5.1",
"prettier": "1.18.2",
"react-hot-loader": "4.12.6",
"react-test-renderer": "16.8.6",
"redux-mock-store": "1.5.3",
"stylint": "1.5.9"
},
"dependencies": {
"@material-ui/core": "^4.3.0",
"chart.js": "^2.8.0",
"cozy-bar": "7.5.0",
"cozy-client": "6.49.0",
"cozy-scripts": "2.0.2",
"cozy-ui": "^22.8.0",
"eslint-config-cozy-app": "1.1.12",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-http-request": "^2.0.0",
"react-router-dom": "5.0.1"
}
}