-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.19 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
{
"name": "grape-browser",
"version": "3.27.4",
"main": "lib/index.js",
"files": [
"lib"
],
"engines": {
"node": ">=8.11.2"
},
"dependencies": {
"color": "^0.10.1",
"component-query": "^0.0.3",
"emojione": "^1.4.0",
"grape-js-emoji": "^3.4.0",
"grape-theme": "^3.6.0",
"grape-web": "^1.12.0",
"images-loader": "^0.1.2",
"keyname": "^0.1.0",
"lodash": "^4.17.21",
"moment": "^2.10.3",
"prop-types": "^15.5.10",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-finite-list": "^1.0.8",
"react-intl": "^2.1.3",
"react-overlays": "^0.7.0",
"react-pure-render": "^1.0.2",
"react-redux": "^4.0.0",
"react-visibility-sensor": "^3.1.1",
"redux": "^3.0.4",
"redux-thunk": "^1.0.0",
"reselect": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/node": "^7.14.2",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.14.2",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/runtime": "^7.14.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-react-intl": "^3.0.1",
"babel-polyfill": "^6.26.0",
"cross-env": "^5.0.0",
"custom-event-polyfill": "^0.2.1",
"document-register-element": "^0.1.8",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-config-ubergrape": "^5.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"expect.js": "^0.3.1",
"font-awesome": "^4.3.0",
"glob": "^7.0.6",
"husky": "^0.14.3",
"json-loader": "^0.5.1",
"karma": "^6.3.3",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"lint-staged": "^11.0.0",
"mocha": "^9.0.0",
"node-libs-browser": "^0.5.2",
"prettier": "^2.3.1",
"raw-loader": "^0.5.1",
"webpack": "^5.38.1"
},
"scripts": {
"all": "yarn test && yarn build && yarn i18n:export",
"build": "yarn clear:lib && babel src --out-dir lib",
"build:watch": "yarn clear:lib && babel --watch src --out-dir lib",
"build:i18n": "yarn clear:i18n && yarn build && yarn i18n:export",
"lint": "eslint src",
"emoji": "bin/emoji",
"test:watch": "cross-env NODE_ENV=testing karma start",
"test": "cross-env SINGLE_RUN=true NODE_ENV=testing karma start",
"clear:lib": "rimraf './lib/*'",
"clear:i18n": "rimraf './i18n/{src,export}'",
"i18n:export": "babel-node i18n/scripts/export.js",
"i18n:import": "yarn build && babel-node i18n/scripts/import.js",
"precommit": "lint-staged",
"prepublishOnly": "yarn all"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}