-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 2.64 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "pair-a-dice_repo",
"version": "1.0.0",
"description": "Pair-a-Dice Scratch Project",
"main": "/server/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=production node server/server.js",
"build": "NODE_ENV=production webpack --history-api-fallback",
"dev": "NODE_ENV=development concurrently \"nodemon server/server.js\" \"webpack-dev-server --open\"",
"server": "nodemon /server/server.js",
"check-types": "tsc",
"testing": "jest --verbose",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"buildts": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"bundle": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frakes413/pair-a-dice_repo.git"
},
"author": "Pair-a-Dice Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/frakes413/pair-a-dice_repo/issues"
},
"homepage": "https://github.com/frakes413/pair-a-dice_repo#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jest": "^26.4.2",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.3.3",
"react": "^16.13.1",
"react-ace": "^9.1.3",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-devtools": "^3.7.0",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"xterm-for-react": "^1.0.4"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"babel": "^6.23.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.3.0",
"css-loader": "^4.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.4",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}