-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.01 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.01 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
{
"name": "@deboxsoft/component-webapp-react",
"version": "0.1.0-beta.0",
"description": "",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "rimraf build && npm run build:es && npm run build:typings && npm run build:copy",
"build:devel": "npm run build:es && npm run build:typings",
"build:es": "rimraf 'build/!(package.json|**/*.d.ts)' && cross-env BABEL_ENV=production babel -x '.ts','.tsx' --ignore '**/__tests__/**' -d './build' './src'",
"build:typings": "rimraf 'build/**/*.d.ts' && tsc -p tsconfig.json",
"build:copy": "cpx 'types/**/*' build/__types && cpx package.json build",
"check": "npm run lint && tsc --noEmit",
"lint": "eslint --fix",
"precommit": "lint-staged",
"publish:docs": "npm run styleguide-build && npm run gh-pages",
"publish:deploy": "npm run build && cd build && npm publish",
"test": "cross-env NODE_ENV=test jest src"
},
"lint-staged": {
"*.{js}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/deboxsoft/component-webapp-react.git"
},
"keywords": [],
"author": "Nurdiansyah",
"devDependencies": {
"@deboxsoft/devel-react": "^3.1.4",
"@testing-library/react": "^8.0.1",
"@types/color": "^3.0.0",
"@types/history": "^4.7.2",
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.123",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.3",
"@types/react-helmet": "^5.0.8",
"@types/react-test-renderer": "^16.8.1",
"gh-pages": "^2.0.1",
"husky": "^0.14.3",
"if-env": "^1.0.0",
"jest": "^24.5.0",
"jest-styled-components": "^6.3.1",
"lint-staged": "^6.0.0",
"prettier": "^1.16.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"standard-version": "^6.0.1",
"styled-components": "^4.2.0",
"typescript": "^3.5.2"
},
"dependencies": {
"color": "^3.1.1",
"immutable": "^4.0.0-rc.12",
"navi": "^0.12.6",
"react-helmet": "^5.2.1"
}
}