-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "interactive-frontend-development-homework-mathemagician-catchup",
"version": "1.0.0",
"description": "Catch-up application for the mathemagician homework in the Interactive Frontend Development course",
"repository": "https://github.com/urmastalimaa/interactive-frontend-development",
"author": "Urmas Talimaa",
"license": "MIT",
"private": true,
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/eslint-parser": "^7.13.4",
"@babel/plugin-proposal-object-rest-spread": "^7.13.0",
"@babel/preset-env": "^7.13.5",
"@babel/preset-react": "^7.12.13",
"@babel/register": "^7.13.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.4.1",
"@testing-library/dom": "^7.30.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.0",
"archiver": "^5.3.0",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0",
"global-jsdom": "^8.0.0",
"jsdom": "^16.5.2",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"postcss": "^8.2.6",
"postcss-import": "^14.0.0",
"prettier": "^2.2.1",
"rollup": "^2.39.1",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-serve": "^1.1.0",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0"
},
"scripts": {
"build": "rollup --config rollup.config.js",
"build:watch": "rollup --config rollup.config.js --watch",
"format": "prettier --write .",
"lint": "eslint .",
"start": "rollup --config rollup.config.js --watch --environment START_BROWSER:true",
"start:server:slow": "game_lobby_server --port=8081 --delay=500 --failure-percentage=30",
"start:server:fast": "game_lobby_server --port=8081",
"test": "mocha",
"test:coverage": "nyc yarn test",
"test:watch": "mocha --watch"
},
"dependencies": {
"game_lobby_server": "1.4.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
}
}