-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.33 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
{
"name": "summoncalc",
"author": "Ben Williams",
"version": "1.1.0",
"keywords": [
"D&D"
],
"license": "GPL-3",
"repository": {
"type": "git",
"url": "https://github.com/Smashman/summoncalc"
},
"dependencies": {
"number-to-words": "^1.2.4",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/jest": "^26.0.14",
"@types/number-to-words": "^1.2.0",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.5.3",
"npm-run-all": "^4.1.5",
"postcss-image-inliner": "^4.0.3",
"rollup": "^2.29.0",
"rollup-plugin-postcss-modules": "^2.0.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.32.8",
"serve": "^11.3.2",
"ts-jest": "^26.4.1",
"tslib": "^2.0.2",
"typescript": "^4.0.3"
},
"scripts": {
"build": "NODE_ENV=production rollup -c",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel serve watch",
"start": "npm-run-all --parallel serve build",
"serve": "serve dist"
}
}