-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "peace",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "tsc --noEmit && eslint --ext .js,.jsx,.ts,.tsx .",
"build": "parcel build index.html",
"tsc": "tsc --noEmit --watch --preserveWatchOutput",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"esw": "esw -w --ext .js,.jsx,.ts,.tsx",
"parcel": "parcel index.html",
"dev": "concurrently --raw npm:tsc npm:lint npm:parcel",
"test": "jest",
"test-watch": "jest --watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"concurrently": "^5.3.0",
"eslint": "^7.15.0",
"eslint-watch": "^7.0.0",
"jest": "^26.6.3",
"parcel-plugin-static-files-copy": "^2.5.0",
"sass": "^1.30.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"dependencies": {
"bootstrap": "^4.5.3",
"phaser": "^3.24.1",
"react": "^17.0.1",
"react-bootstrap": "^1.4.0",
"react-dom": "^17.0.1"
},
"staticFiles": {
"watcherGlob": "**"
}
}