-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.06 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
{
"name": "peggy",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"pre-commit": "lint-staged",
"build": "NODE_ENV=production webpack",
"test": "jest --verbose",
"test:watch": "jest --watchAll --coverage=false --verbose",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx --ignore-path='.eslintignore'",
"lint:fix": "eslint . --ext .js,.ts,.jsx,.tsx --fix --ignore-path='.eslintignore'",
"start": "NODE_ENV=development webpack serve",
"ts-check": "tsc -p tsconfig.json --noEmit",
"format": "prettier --write \"./**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .prettierignore"
},
"author": "bobby wang",
"license": "ISC",
"dependencies": {
"@capsizecss/core": "^3.0.0",
"@capsizecss/vanilla-extract": "^1.0.0",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@vanilla-extract/css": "^1.4.0",
"classnames": "^2.3.1",
"clsx": "^1.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@vanilla-extract/webpack-plugin": "^2.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-peggy": "^1.1.5",
"fork-ts-checker-webpack-plugin": "^6.3.1",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.0",
"jest": "^27.0.6",
"jest-watch-typeahead": "^0.6.4",
"lint-staged": "^11.1.1",
"mini-css-extract-plugin": "^2.1.0",
"prettier": "^2.3.2",
"react-test-renderer": "^17.0.2",
"sass": "^1.37.5",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.4",
"typescript": "^4.3.5",
"typescript-plugin-css-modules": "^3.4.0",
"webpack": "^5.48.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}