-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "WordLister",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"webpack-dev": "webpack --mode development",
"webpack-build": "webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1",
"start-ls": "live-server public",
"start-wps": "webpack server --open",
"babel": "npx babel src/app.js --out-file=public/scripts/app.js --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"node-sass": "^6.0.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"webpack": "^5.47.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"axios": "^0.24.0",
"bootstrap": "^5.1.3",
"file-loader": "^6.2.0",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-bootstrap": "^2.0.2",
"react-dom": "^17.0.2",
"react-speech": "^1.0.2"
}
}