-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.67 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
{
"name": "a1",
"version": "1.0.0",
"description": "",
"module": "./src/index.tsx",
"type": "module",
"scripts": {
"esm-webpack": "NODE_OPTIONS=\"--loader=ts-node/esm\" ts-node node_modules/webpack/bin/webpack",
"build": "pnpm -s esm-webpack",
"serve": "pnpm -s esm-webpack serve",
"lint": "eslint ./src",
"lint:fix": "pnpm -s lint -- --fix"
},
"author": "Adam Demasi <adam@chariz.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/chariz/tweakdle.git"
},
"bugs": {
"url": "https://github.com/chariz/tweakdle/issues"
},
"homepage": "https://github.com/chariz/tweakdle#readme",
"dependencies": {
"@chakra-ui/react": "^1.8.7",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"array-unsort": "^1.1.6",
"clsx": "^1.1.1",
"framer-motion": "^6",
"preact": "^10.7.0"
},
"devDependencies": {
"@tsconfig/node16-strictest-esm": "^1.0.0",
"@types/node": "^17.0.23",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.12.0",
"eslint-config-chariz": "^1.1.0",
"html-webpack-plugin": "^5.5.0",
"json5-loader": "^4.0.1",
"size-plugin": "^2.0.2",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.6.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-messages": "^2.0.4",
"webpack-remove-empty-scripts": "^0.7.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom",
"@babel/core",
"@babel/plugin-syntax-flow",
"@babel/plugin-transform-react-jsx"
]
}
}
}