-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1005 Bytes
/
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
{
"name": "linaria-ts-trial",
"version": "0.1.0",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"start": "webpack serve --env development --port 3000 --open --hot",
"build": "webpack --env production"
},
"dependencies": {
"@linaria/core": "^3.0.0-beta.1",
"@linaria/react": "^3.0.0-beta.1",
"@linaria/shaker": "^3.0.0-beta.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@linaria/babel-preset": "^3.0.0-beta.1",
"@linaria/webpack-loader": "^3.0.0-beta.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"html-webpack-plugin": "^4.5.1",
"mini-css-extract-plugin": "^1.3.3",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.13.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1"
}
}