-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.43 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
{
"name": "samoyed",
"version": "0.1.0",
"description": "General frontend components based on React and Bootstrap",
"private": true,
"main": "index.js",
"scripts": {
"precommit": "tsc && npm run eslint",
"postinstall": "find node_modules -type f -name '*.ts*' | grep -v '\\.d.ts' | xargs rm -f",
"eslint": "eslint --ext .ts,.tsx ./",
"fix": "eslint --ext .tsx,.ts --fix ./",
"update": "node scripts/update.js",
"watch": "node scripts/watch.js",
"bootstrap": "lerna bootstrap",
"build": "tsc",
"publish": "tsc && lerna publish",
"clean": "lerna clean",
"start-dev": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maichong/samoyed.git"
},
"author": "Liang <[email protected]> (https://github.com/liangxingchen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/maichong/samoyed/issues"
},
"homepage": "https://github.com/maichong/samoyed#readme",
"resolutions": {
"@samoyed/checkbox": "file:packages/checkbox",
"@samoyed/checkbox-group": "file:packages/checkbox-group",
"@samoyed/icon": "file:packages/icon",
"@samoyed/modal": "file:packages/modal",
"@samoyed/select": "file:packages/select",
"@samoyed/switch": "file:packages/switch",
"@samoyed/toast": "file:packages/toast",
"@samoyed/types": "file:packages/types",
"@samoyed/tooltip-wrapper": "file:packages/tooltip-wrapper"
},
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@samoyed/checkbox": "file:packages/checkbox",
"@samoyed/checkbox-group": "file:packages/checkbox-group",
"@samoyed/icon": "file:packages/icon",
"@samoyed/modal": "file:packages/modal",
"@samoyed/select": "file:packages/select",
"@samoyed/switch": "file:packages/switch",
"@samoyed/toast": "file:packages/toast",
"@samoyed/tooltip-wrapper": "file:packages/tooltip-wrapper",
"@samoyed/types": "file:packages/types",
"@types/classnames": "^2.2.7",
"@types/lodash": "^4.14.123",
"@types/prop-types": "^15.7.0",
"@types/react": "*",
"@types/react-dom": "*",
"@types/react-overlays": "^1.1.2",
"@types/react-router-dom": "^4.3.1",
"@types/react-select": "^2.0.14",
"@types/react-syntax-highlighter": "^10.1.0",
"@types/react-toastr": "^3.0.4",
"akita": "^0.7.4",
"animate.css": "^3.7.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"bootstrap": "^4.3.1",
"chokidar": "^2.1.2",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^2.0.0",
"css-loader": "^2.1.1",
"eslint": "4.19.1",
"eslint-config-alloy": "^1.4.2",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-typescript": "0.12.0",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"lerna": "^3.13.1",
"node-sass": "^4.11.0",
"react": "^16.8.4",
"react-bootstrap": "^1.0.0-beta.5",
"react-dom": "^16.8.4",
"react-router-dom": "^4.3.1",
"react-select": "^2.4.2",
"react-syntax-highlighter": "^10.2.0",
"read-promise": "^1.0.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"typescript": "3.2.1",
"typescript-eslint-parser": "^22.0.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}