-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.5 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
{
"name": "timeline",
"version": "1.0.0",
"description": "Timeline for editor",
"private": false,
"scripts": {
"build": "webpack --config webpack.prod.js",
"build_lib": "babel src --out-dir lib --ignore demo*,setupTests.js,*.test.js --copy-files --source-maps inline",
"prepare": "npm run build_lib",
"build_demo": "webpack --config webpack.demo.prod.js",
"start": "webpack-dev-server --open --config webpack.dev.js",
"docs": "esdoc",
"pretty": "prettier --write --tab-width 4 \"src/**/*.js\"",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/strategic-limited/timeline.git"
},
"engines": {
"node": ">=4.2.4"
},
"author": "Sergey",
"license": "MIT",
"files": [
"dist",
"lib"
],
"main": "lib/index.js",
"homepage": "https://github.com/strategic-limited/timeline#readme",
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.8",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"antd": "^3.6.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"babel-root-slash-import": "^1.1.0",
"chai": "^4.1.2",
"core-js": "^2.4.0",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-jsx-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.10.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"ignore-styles": "^5.0.1",
"jsdom": "^13.0.0",
"lint-staged": "8.2.1",
"mocha": "^5.2.0",
"prettier": "^1.13.5",
"style-loader": "^0.21.0",
"tern": "^0.21.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"interactjs": "1.9.10",
"lodash": "4.17.15",
"moment": "2.24.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-selecto": "1.10.1",
"react-virtualized": "9.19.1"
}
}