-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.55 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
{
"name": "unicode-style",
"version": "0.1.0",
"private": true,
"homepage": "https://unicode.style",
"dependencies": {
"classnames": "^2.2.6",
"draft-js": "^0.10.5",
"draft-js-buttons": "^2.0.1",
"draft-js-inline-toolbar-plugin": "^2.0.3",
"draft-js-plugins-editor": "^2.1.1",
"draftjs-utils": "^0.9.4",
"flow-bin": "^0.78.0",
"gh-pages": "^1.2.0",
"immutable": "^3.8.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"runes": "^0.4.3",
"sanitize.css": "^6.0.0",
"svg-react-loader": "^0.4.5"
},
"devDependencies": {
"eslint-config-prettier": "^2.9.0",
"prettier": "^1.14.0",
"react-scripts": "2.0.0-next.3e165448"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"flow": "flow",
"lint:eslint": "eslint --ignore-path .gitignore .",
"lint:prettier": "prettier '**/*.{css, js}' --ignore-path .gitignore --list-different",
"prettier": "prettier '**/*.{css, js}' --ignore-path .gitignore --write",
"test": "npm run lint:eslint && npm run lint:prettier && npm run flow"
},
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"extends": [
"react-app",
"prettier"
],
"parserOptions": {
"ecmaVersion": 8
}
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">0.25%",
"not op_mini all",
"ie 11"
]
}
}