-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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.0",
"@stylin/style": "0.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@stylin/msa-loader": "^0.5.1",
"@stylin/ts-loader": "0.5.1",
"@types/es6-promise": "^3.3.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.11.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"node-sass": "^9.0.0",
"sass": "^1.77.0",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"typescript": "^5.4.5",
"typescript-plugin-css-modules": "^5.1.0",
"url-loader": "^4.1.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}