-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "coinche.me",
"version": "1.0.0",
"description": "Jouer aux cartes en ligne entre amis sans création de compte",
"main": "index.js",
"repository": "[email protected]:augnustin/coinche.me.git",
"author": "@augnustin && @gaut-b",
"license": "MIT",
"scripts": {
"cleanup": "rm -rf .cache build",
"watch-app": "parcel watch -d build --hmr-port 36449 app/index.html",
"watch-server": "nodemon -r esm --watch server server/index.js",
"dev": "concurrently \"yarn watch-app\" \"yarn watch-server\"",
"build": "parcel build -d build app/index.html",
"server": "node -r esm server/index.js",
"start": "yarn install && yarn cleanup && yarn build && yarn server",
"test": "jest --watch *.test.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"bulma": "^0.8.1",
"cookie": "^0.4.0",
"cors": "^2.8.5",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-session": "^1.17.1",
"ioredis": "^4.16.0",
"lodash.get": "^4.4.2",
"marked": "^0.8.2",
"parcel-bundler": "^1.12.4",
"prop-types": "^15.7.2",
"react": "^16.8.0",
"react-beforeunload": "^2.1.0",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"reselect": "^4.0.0",
"socket.io": "^2.4.0",
"uuid": "^7.0.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"babel-loader": "^8.1.0",
"babel-plugin-wildcard": "^6.0.0",
"concurrently": "^5.1.0",
"jest": "^25.3.0",
"marked": "^0.8.2",
"nodemon": "^2.0.2",
"sass": "^1.26.3"
}
}