-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 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
{
"name": "cozy-sandbox",
"version": "0.1.0",
"scripts": {
"tx": "tx pull --all || true",
"lint": "yarn lint:js && yarn lint:styles",
"lint:js": "cozy-scripts lint '{src,test}/**/*.{js,jsx}'",
"lint:styles": "stylint src/styles --config ./.stylintrc",
"prebuild": "yarn lint",
"build": "yarn build:browser",
"build:browser": "cozy-scripts build --browser",
"build:mobile": "cozy-scripts build --mobile",
"watch": "yarn watch:browser",
"watch:browser": "cozy-scripts watch --browser",
"watch:mobile": "cozy-scripts watch --mobile",
"start": "cozy-scripts start --hot --browser",
"deploy": "git-directory-deploy --directory build/ --branch ${DEPLOY_BRANCH:-build} --repo=${DEPLOY_REPOSITORY:-https://[email protected]/cozy/cozy-sandbox.git}",
"test": "cozy-scripts test --verbose --coverage",
"cozyPublish": "git fetch origin ${DEPLOY_BRANCH:-build}:${DEPLOY_BRANCH:-build} && cozy-scripts publish --token $REGISTRY_TOKEN --build-commit $(git rev-parse ${DEPLOY_BRANCH:-build})"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cozy/cozy-sandbox.git"
},
"author": "",
"contributors": [],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/cozy/cozy-sandbox/issues"
},
"homepage": "https://github.com/cozy/cozy-sandbox#readme",
"devDependencies": {
"babel-core": "7.0.0-bridge.0",
"babel-preset-cozy-app": "1.2.1",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.7.0",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.11.1",
"git-directory-deploy": "1.5.1",
"prettier": "1.15.2",
"react-hot-loader": "4.8.0",
"react-test-renderer": "16.7.0",
"stylint": "1.5.9"
},
"dependencies": {
"cozy-bar": "6.10.0",
"cozy-client": "6.49.0",
"cozy-client-js": "0.14.2",
"cozy-interapp": "0.4.6",
"cozy-scripts": "1.13.0",
"cozy-ui": "17.2.0",
"eslint-config-cozy-app": "1.1.4",
"react": "16.7.0",
"react-dom": "16.7.0",
"react-router-dom": "4.3.1"
}
}