-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 2.02 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
{
"name": "reshake",
"version": "2.0.0",
"description": "CSShake in React",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"prepare": "mkdir -p dist && babel src --out-dir dist --extensions .ts,.js,.tsx,.jsx && tsc",
"build": "NODE_ENV=production webpack --mode production",
"start": "webpack serve --mode development --open"
},
"keywords": [
"react",
"css",
"csshake",
"react-component"
],
"author": "elrumordelaluz",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.17.10",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-decorators": "7.17.9",
"@babel/plugin-proposal-do-expressions": "^7.16.7",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
"@babel/plugin-proposal-function-bind": "^7.16.7",
"@babel/plugin-proposal-function-sent": "^7.16.7",
"@babel/plugin-proposal-json-strings": "^7.16.7",
"@babel/plugin-proposal-logical-assignment-operators": "^7.16.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.16.7",
"@babel/plugin-proposal-numeric-separator": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-proposal-pipeline-operator": "7.17.6",
"@babel/plugin-proposal-throw-expressions": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "7.22.5",
"@types/react": "18.2.14",
"@types/styled-components": "5.1.26",
"babel-loader": "8.2.5",
"react": "18.1.0",
"react-dom": "18.1.0",
"styled-components": "5.3.5",
"ts-loader": "9.4.4",
"tsc": "2.0.4",
"typescript": "5.1.6",
"webpack": "5.72.1",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.9.0"
},
"peerDependencies": {
"styled-components": "^4.0.0 || ^5.0.0"
}
}