This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
{
"name": "@stellar/elements",
"version": "0.0.3",
"description": "Styled elements for use on Stellar projects",
"main": "dist/stellar-elements.js",
"repository": "[email protected]:stellar/js-stellar-elements.git",
"author": "Morley Zhi <[email protected]>",
"license": "Apache-2.0",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,js}": [
"prettier --config prettier.config.js --write",
"eslint --fix",
"git add"
],
"**/*.{ts,js,md}": [
"prettier --config prettier.config.js --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-react-native-web": "^0.11.2",
"color": "^3.1.1",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"metro-react-native-babel-preset": "^0.54.0",
"peer-deps-externals-webpack-plugin": "^1.0.4",
"prettier": "^1.17.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-art": "^16.8.6",
"react-dom": "^16.8.6",
"react-native": "^0.59.5",
"react-native-web": "0.9.9",
"react-styleguidist": "^9.0.8",
"styled-components": "^4.2.0",
"styleguidist-knobs": "^0.1.4",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"scripts": {
"test": "yarn prettier:check && yarn eslint",
"prettier": "prettier --config prettier.config.js --write '**/*.{js,md}'",
"prettier:check": "prettier --config prettier.config.js --check '**/*.{js,md}'",
"eslint": "eslint .",
"dev": "NODE_ENV=documentation styleguidist server",
"build": "NODE_ENV=production webpack && yarn build:native",
"build:native": "NODE_ENV=production webpack --config webpack.config.native.js",
"build-docs": "NODE_ENV=documentation styleguidist build"
},
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.3.0",
"react-native": "*",
"styled-components": ">=4.0.0"
}
}