-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
79 lines (79 loc) · 2.41 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
{
"name": "backoffice",
"version": "2.2.0",
"main": "dist/backoffice.js",
"author": "Hans Christian Reinl <info@drublic.de>",
"license": "MIT",
"scripts": {
"start": "yarn server",
"server": "webpack-dev-server",
"js:lint": "eslint **/*.{js,jsx}",
"js:test": "jest",
"js:test:watch": "yarn js:test --watch",
"js:test:coverage": "yarn js:test --coverage",
"js:build": "webpack --config webpack-production.config.js",
"ts:lint": "tslint {,src/**/}*.{ts,tsx} -p tsconfig.json",
"ts:build": "tsc -p tsconfig.json",
"lint": "yarn js:lint && yarn ts:lint",
"test": "yarn lint && yarn js:test",
"codecov": "codecov",
"test:coverage": "yarn js:test:coverage && yarn codecov",
"build": "yarn js:build",
"prepublishOnly": "rm -rf ./dist && yarn build"
},
"dependencies": {
"@material-ui/icons": "^1.0.0-beta.42",
"classnames": "^2.2.5",
"init-uuid": "^1.2.0",
"is-url": "^1.2.2",
"isemail": "^3.0.0",
"jest": "^22.1.4",
"jss": "^9.5.1",
"keycode": "^2.1.9",
"material-ui": "^1.0.0-beta.42",
"material-ui-pickers": "^1.0.0-beta.15.1",
"moment": "^2.20.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"react-jss": "^8.1.0",
"react-router-dom": "^4.2.2",
"recompose": "^0.26.0",
"vanilla-store": "^0.4.0",
"webpack": "^3.10.0"
},
"peerDependencies": {
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.1.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"codecov": "^3.0.0",
"concurrently": "^3.5.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"express": "^4.16.2",
"react-mock-router": "^1.0.11",
"tslint": "^5.9.1",
"tslint-react": "^3.5.1",
"typescript": "^2.7.2",
"webpack-dev-server": "^2.11.1"
}
}