-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.21 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.21 KB
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
{
"name": "wordle-list",
"version": "1.1.7",
"description": "A simple app for finding all your daily Wordle games!",
"scripts": {
"clean": "rm -rf build/",
"build": "npm run build:js && npm run build:md",
"build:md": "node ./util/generateReadme.js",
"build:js": "NODE_ENV=production rollup -c rollup.config.js",
"dev": "NODE_ENV=development rollup -c rollup.config.js -w",
"start": "npm run dev",
"createCname": "touch build/CNAME && echo 'wordlebookmarks.app' > build/CNAME",
"push": "git subtree split --prefix build -b gh-pages && git push -f origin gh-pages:gh-pages && git branch -D gh-pages",
"deploy": "npm run clean && npm run build && npm run createCname && npm run push",
"updateManifest": "git add build/index.html && git commit -m \"update version\"",
"postversion": "npm run build && npm run updateManifest && git push && git push --tags && npm run deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rapka/wordle-list.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rapka/wordle-list/issues"
},
"homepage": "https://github.com/rapka/wordle-list#readme",
"dependencies": {
"array-move": "^4.0.0",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dnd": "^15.1.1",
"react-dnd-html5-backend": "^15.1.2",
"react-dnd-touch-backend": "^15.1.1",
"react-dom": "^17.0.2",
"react-html-parser": "^2.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-html": "^0.2.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-url": "^6.1.0",
"@svgr/rollup": "^6.2.1",
"autoprefixer": "^10.4.4",
"rollup": "^2.70.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-polyfill-node": "^0.8.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2"
}
}