This repository has been archived by the owner on Apr 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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
{
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"form-data": "^4.0.0",
"regenerator-runtime": "^0.13.9",
"webpack": "^5.59.1"
},
"name": "nl-evaluation",
"description": "Written By Jupi.",
"version": "1.0.0",
"main": "index.js",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@babel/preset-env": "^7.15.8",
"babel-core": "^6.26.3",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.4.0",
"html-webpack-plugin": "^5.4.0",
"install": "^0.13.0",
"jest": "^27.3.1",
"jest-fetch-mock": "^3.0.3",
"mini-css-extract-plugin": "^2.4.3",
"node-sass": "^6.0.1",
"npm": "^8.1.1",
"sass-loader": "^12.2.0",
"style-loader": "^3.3.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1",
"workbox-webpack-plugin": "^6.3.0"
},
"scripts": {
"test": "jest --env=jsdom",
"start": "node src/server/index.js",
"build-prod": "webpack --config webpack.prod.js",
"build-dev": "webpack-dev-server --config webpack.dev.js --open"
},
"jest": {
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "babel-jest"
},
"setupFiles": [
"./setupJest.js"
]
},
"author": "Jupi",
"license": "ISC"
}