-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "vacancy-visualiser",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "npm run test:lint",
"test:lint": "eslint .",
"dev": "nodemon -r dotenv/config -e js,jsx,json",
"prebuild:js": "mkdir -p ./public/js",
"build:js": "webpack",
"prebuild:css": "mkdir -p ./public/css",
"build:css": "npm-sass ./src/assets/css/index.scss > ./public/css/index.css",
"build": "npm run build:js && npm run build:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marvell-Consulting/vacancy-visualiser.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Marvell-Consulting/vacancy-visualiser/issues"
},
"homepage": "https://github.com/Marvell-Consulting/vacancy-visualiser#readme",
"dependencies": {
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.16",
"express": "^4.17.1",
"express-react-views": "^0.11.0",
"mapbox-gl": "^2.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"babel-loader": "^8.2.2",
"dotenv": "^9.0.2",
"eslint": "^7.26.0",
"eslint-config-lennym": "^2.2.0",
"nodemon": "^2.0.7",
"npm-sass": "^2.3.0",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
}
}