-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.05 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
{
"name": "react-anagram-animation",
"version": "1.4.0",
"author": "Scott Canoni",
"description": "A React component to use CSS animations to swap letters in 2 words which are an anagram of each other. The text is animated in position after calculating initial and final positions of each letter.",
"license": "WTFPL",
"main": "dist/index.js",
"private": false,
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "del /Q dist\\* && NODE_ENV=production babel src/lib --out-dir dist --copy-files",
"build-fresh": "NODE_ENV=production babel src/lib --out-dir dist --copy-files",
"build-css": "sass src/:src/",
"watch-css": "sass --watch src/:src/",
"eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "git://github.com/scottcanoni/react-anagram-animation"
},
"keywords": [
"anagram",
"animation",
"react",
"text",
"swap",
"letters",
"rearrange"
],
"dependencies": {
"core-js": "^3.27.2"
},
"peerDependencies": {
"react": "^17.0.2 || ^18.2.0",
"react-dom": "^17.0.2 || ^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/eslint-parser": "^7.19.1",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"sass": "^1.57.1"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}