-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.88 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.88 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
78
79
80
81
82
83
84
85
86
{
"name": "@hliejun/react-chat",
"version": "0.0.1-alpha.7",
"description": "Presentational chat components for ReactJS",
"main": "build/reactchat.js",
"module": "build/reactchat.module.js",
"repository": "https://github.com/hliejun/react-chat.git",
"author": "hliejun <liejun.hlj@gmail.com>",
"bugs": {
"url": "https://github.com/hliejun/react-chat/issues"
},
"homepage": "https://github.com/hliejun/react-chat#readme",
"keywords": [
"chat",
"component",
"library",
"messaging",
"react"
],
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"dompurify": "^1.0.8",
"prop-types": "^15.6.2"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.10",
"@storybook/addon-links": "^3.4.10",
"@storybook/addons": "^3.4.10",
"@storybook/react": "^3.4.10",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-jest": "^22.4.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"classnames": "^2.2.5",
"eslint": "^5.5.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"node-sass": "^4.9.3",
"postcss-scss": "^1.0.3",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-postcss": "^1.2.8",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-size-snapshot": "^0.7.0",
"rollup-watch": "^4.3.1",
"sass-lint": "^1.12.1",
"sass-loader": "^7.1.0",
"webpack": "^4.19.1"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"scripts": {
"build": "export NODE_ENV=production && rollup -c rollup.config.babel.js",
"dev": "export NODE_ENV=development && rollup -c rollup.config.babel.js",
"examples:build": "cd \"./examples\" && \"./node_modules/.bin/webpack\"",
"examples:watch": "cd \"./examples\" && \"./node_modules/.bin/webpack-dev-server\"",
"lint:es": "./node_modules/.bin/eslint --ext .jsx,.js ./",
"lint:sass": "./node_modules/.bin/sass-lint -c .sasslintrc.json -v -q",
"lint": "yarn run lint:es & yarn run lint:sass",
"start": "(yarn run watch & yarn run examples:watch & yarn run storybook:watch)",
"storybook:build": "build-storybook",
"storybook:watch": "start-storybook -p 6006",
"storybook": "build-storybook -c .storybook -o docs",
"test": "jest --no-cache",
"watch": "export NODE_ENV=development && rollup -c -w rollup.config.babel.js"
}
}