-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.22 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.22 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
{
"name": "@cremalab/caws",
"version": "0.1.0",
"description": "Crema App Web Scripts",
"author": "",
"license": "ISC",
"bin": {
"caws": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/types.d.ts",
"files": [
".eslintrc.js",
"dist",
"distStatic"
],
"scripts": {
"start": "tsc -w",
"build": "rimraf dist && tsc",
"test:pack": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"prepack": "npm run build",
"prepush": "npm run test:ci",
"test:ci": "npm-run-all test:lint test:unit",
"test:lint": "eslint -c ./.eslintrc.js '**/*.{ts,tsx}' --ignore-pattern '/dist/'",
"test:lint:fix": "npm run test:lint -- --fix",
"test:types": "tsc",
"test:unit": "jest --passWithNoTests",
"test:unit:coverage": "npm run test:unit -- --coverage --watchAll=false"
},
"dependencies": {
"@storybook/addon-actions": "^5.2.6",
"@storybook/addon-centered": "^5.2.6",
"@storybook/addon-links": "^5.2.6",
"@storybook/addons": "^5.2.6",
"@storybook/react": "^5.2.6",
"@testing-library/react": "^9.3.2",
"@types/cross-spawn": "^6.0.1",
"@types/jest": "24.0.23",
"@types/node": "12.12.12",
"@types/react": "16.9.13",
"@types/react-dom": "16.9.4",
"@types/webpack": "^4.41.0",
"chokidar": "^3.3.0",
"cross-spawn": "^7.0.1",
"cross-spawn-promise": "^0.10.1",
"eslint": "^6.7.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-cypress": "^2.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"hygen": "^5.0.3",
"loki": "^0.18.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "^3.3.0",
"typescript": "3.7.2",
"webpack": "4.41.0"
},
"devDependencies": {
"husky": "^3.1.0",
"husky-add-issue-tracker": "0.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"rimraf": "^3.0.0",
"tree-cli": "^0.6.4",
"ts-jest": "^24.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run prepush",
"prepare-commit-msg": "husky-add-issue-tracker"
}
},
"lint-staged": {
"*.{ts,tsx}": "npm run test:lint:fix"
}
}