-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.98 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "anima-react",
"version": "0.0.9",
"main": "dist/index.js",
"author": "nmauersberg",
"homepage": "https://anima-react.deni.one/",
"keywords": [
"react",
"components",
"animation"
],
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nmauersberg/anima-react.git"
},
"babelMacros": {
"twin": {
"preset": "emotion"
}
},
"scripts": {
"dev": "webpack serve --mode=development",
"build": "webpack --mode=production",
"start": "ts-node server.ts",
"serve:webpack": "npx serve public",
"prepublish": "rm -rf dist && rm -rf js-lib && tsc && NODE_ENV=production babel js-lib/lib --out-dir dist --copy-files",
"check:spelling": "cspell '**/*.*'",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"ci": "yarn run check:spelling && yarn run prettier:check"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"express": "^4.17.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-markdown": "^8.0.0",
"remark-gfm": "^3.0.1",
"styled-components": "^5.3.1",
"ts-node": "^10.7.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@types/node": "^17.0.21",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.2",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-twin": "^1.0.2",
"cspell": "^5.19.1",
"postcss": "^8.4.8",
"prettier": "^2.5.1",
"tailwindcss": "^2.2.15",
"twin.macro": "^2.7.0",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1"
}
}