-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.15 KB
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
{
"name": "deskpro-sdk-react",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"test": "jest ./tests/*/*.test.*",
"build": "webpack -p",
"docs:serve": "mkdocs serve",
"docs:build": "mkdocs build",
"docs:deploy": "npm run docs:build && gh-pages-deploy",
"lint": "eslint src/* --cache --cache-location=.cache/eslint --ext .js,.jsx",
"lint:fix": "npm run lint -- --fix",
"storybook": "start-storybook -p 9003 -c .storybook",
"precommit": "lint-staged",
"prepublish": "npm run build"
},
"author": "DeskPRO <team@deskpro.com>",
"license": "BSD-3-Clause",
"devDependencies": {
"@storybook/react": "^3.2.12",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"documentation": "^5.3.2",
"enzyme": "^3.1.0",
"enzyme-adapter-react-15": "^1.0.1",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.4.0",
"gh-pages-deploy": "^0.4.2",
"jest": "^21.2.1",
"jsdoc-babel": "^0.3.0",
"lint-staged": "^4.2.3",
"module-resolver": "^1.0.0",
"react-test-renderer": "^15.6.2",
"redux-mock-store": "^1.3.0",
"rimraf": "^2.6.2",
"webpack": "^3.6.0"
},
"dependencies": {
"@deskproapps/deskproapps-sdk-core": "^1.0.0-beta.18",
"deskpro-components": "^1.0.0",
"prop-types": "^15.6.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"redux-form": "^7.0.4",
"redux-thunk": "^2.2.0"
},
"jest": {
"modulePaths": [
"src"
]
},
"gh-pages-deploy": {
"staticpath": "site",
"noprompt": true
},
"lint-staged": {
"*.{js,jsx}": [
"eslint"
]
}
}