-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "hades-run-randomiser",
"author": "Ben Williams",
"version": "0.0.1",
"keywords": [
"hades"
],
"license": "GPL-3",
"repository": {
"type": "git",
"url": "https://github.com/Smashman/hades-run-randomiser-site"
},
"dependencies": {
"classnames": "^2.2.6",
"localforage": "^1.9.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-image": "^2.0.5",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.14",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.5.3",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5",
"postcss-image-inliner": "^4.0.3",
"rollup": "^2.29.0",
"rollup-plugin-postcss-modules": "^2.0.2",
"serve": "^11.3.2",
"ts-jest": "^26.4.1",
"tslib": "^2.0.2",
"typescript": "^4.0.3"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel start watch",
"start": "serve dist",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"img:index": "create-index ./src/img --recursive --extensions 'png' --outputFile 'index.ts' --ignoreUnsafe"
}
}