forked from williamluke4/react-calendar-timeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.68 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
116
117
118
119
120
121
122
{
"name": "@atto-byte/react-calendar-timeline",
"version": "1.0.0",
"description": "react calendar timeline",
"main": "lib/index.js",
"scripts": {
"build": "npm run build:lib",
"build:demo": "echo '!!! Building Demo' && cross-env NODE_ENV=production webpack --progress",
"build:lib": "echo '!!! Building Library' && rimraf lib && cross-env NODE_ENV=production npm run compile:lib && node-sass src/lib/Timeline.scss lib/Timeline.css",
"compile:lib": "babel src --out-dir lib --verbose --extensions \".ts,.tsx,.js,.jsx\"",
"compile:types": "tsc ./src/index.ts --declaration --outDir ./lib --jsx react --emitDeclarationOnly",
"lint": "eslint --ext .js --ext .jsx ./src",
"lint:fix": "prettier-eslint --parser babylon --write \"src/**/*.js\"",
"prepublish": "npm run build:lib",
"start": "webpack-dev-server --hot --host 0.0.0.0 --display-modules",
"test": "jest",
"test:watch": "jest --watch"
},
"files": [
"lib",
"src"
],
"homepage": "https://github.com/williamluke4/react-calendar-timeline",
"repository": {
"type": "git",
"url": "https://github.com/williamluke4/react-calendar-timeline.git"
},
"author": "William Luke <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"reactjs",
"react-component",
"timeline",
"typescript"
],
"standard": {
"parser": "babel-eslint"
},
"jest": {
"verbose": true,
"testMatch": [
"**/__tests__/**/*.js"
],
"setupTestFrameworkScriptFile": "<rootDir>/config/jest-setup.js",
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"modulePaths": [
"<rootDir>/src/",
"<rootDir>/__tests__"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/__tests__/test-utility"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"dependencies": {
"create-react-context": "^0.2.2",
"element-resize-detector": "^1.1.12",
"lodash.isequal": "^4.5.0"
},
"peerDependencies": {
"interactjs": "^1.3.4",
"moment": "*",
"prop-types": "^15.6.2",
"react": ">=16.3",
"react-dom": ">=16.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/react": "^16.7.20",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"babel-plugin-react-remove-properties": "^0.2.5",
"cross-env": "^5.2.0",
"css-loader": "~2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.12.0",
"eslint-config-prettier": "^3.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.3",
"eslint-plugin-standard": "^4.0.0",
"faker": "^4.1.0",
"interactjs": "^1.3.4",
"jest": "^23.6.0",
"jest-dom": "^3.0.0",
"jest-watch-typeahead": "^0.2.0",
"jsdom": "^13.1.0",
"moment": "^2.23.0",
"node-sass": "^4.11.0",
"prettier": "^1.15.3",
"prettier-eslint-cli": "^4.7.0",
"prop-types": "^15.6.2",
"randomcolor": "^0.5.3",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1",
"react-testing-library": "^5.4.4",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "~0.23.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}