-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.56 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
{
"name": "demo-cards",
"version": "0.0.1",
"description": "Demo application of Stylin usage.",
"author": "sultan99",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "npm run clean && webpack --mode production --progress",
"clean": "rm -rf ./dist",
"lint": "eslint . --ext .tsx,.ts --fix",
"start": "webpack serve --mode development --env development",
"tsc": "tsc -w"
},
"dependencies": {
"@holycow/state": "^1.2.2",
"@stylin/style": "0.5.2",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.26.7",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@stylin/msa-loader": "^0.5.1",
"@stylin/ts-loader": "0.5.1",
"@types/es6-promise": "^3.3.2",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "6.11.0",
"eslint": "^9.19.0",
"eslint-plugin-react": "^7.37.4",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"node-sass": "^9.0.0",
"sass": "^1.83.4",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"typescript": "^5.7.3",
"typescript-plugin-css-modules": "^5.1.0",
"url-loader": "^4.1.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
}
}