-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 931 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 931 Bytes
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
{
"name": "anagram",
"author": "Cameron Fraser",
"private": true,
"version": "1.0.0",
"description": "A web-based anagram writer tool",
"main": "src/index.tsx",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/frasercl/anagram.git"
},
"dependencies": {
"preact": "^10.7.2",
"word-list": "^3.1.0"
},
"devDependencies": {
"@wasm-tool/wasm-pack-plugin": "^1.6.0",
"css-loader": "^6.7.1",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.5.0",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.1"
},
"scripts": {
"build": "rimraf dist && webpack",
"start": "rimraf dist && webpack-dev-server",
"predeploy": "rimraf dist && webpack --mode production",
"deploy": "gh-pages -d dist"
}
}