-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.91 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
{
"name": "decipher-game",
"version": "1.0.0",
"description": "\"Le Cipher\" is a quick game that tests your deciphering knowledge by presenting you with random sentences of varying difficulties encoded in different patterns. This project is a test to see how to build an application using JavaScript, Java, and Python together.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --watch --mode=development",
"build": "webpack --mode=production",
"start": "nodemon server/index.js"
},
"repository": "git+https://github.com/BenYoss/decipher-game.git",
"keywords": [],
"author": "benyoss <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/BenYoss/decipher-game/issues"
},
"homepage": "https://github.com/BenYoss/decipher-game#readme",
"dependencies": {
"axios": "^0.24.0",
"bootstrap": "^5.1.3",
"chart.js": "^3.7.1",
"chartjs-plugin-datalabels": "^2.0.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"file-loader": "^6.2.0",
"framer-motion": "^6.2.6",
"html2canvas": "^1.4.1",
"mongoose": "^6.2.6",
"nodemon": "^2.0.15",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-bootstrap": "^2.1.0",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.9",
"sass": "^1.47.0",
"sequelize": "^6.12.5",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1"
}
}