-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "todo-mvc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "cross-env PORT=3000 TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack serve --progress",
"build": "cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack --mode=production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ocian/todo-mvc.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ocian/todo-mvc/issues"
},
"homepage": "https://github.com/ocian/todo-mvc#readme",
"devDependencies": {
"@types/node": "^18.11.18",
"@types/webpack": "^5.28.0",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"css-loader": "^5.2.7",
"css-minimizer-webpack-plugin": "^4.2.2",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^1.6.2",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"regenerator-runtime": "^0.13.11",
"sass": "^1.57.1",
"sass-loader": "^12.6.0",
"style-loader": "^2.0.0",
"swc-loader": "^0.1.16",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^3.11.3"
},
"dependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"clsx": "^1.2.1",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tachyons": "^4.12.0"
}
}