-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.69 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
{
"name": "f28cd-project",
"version": "0.0.1",
"description": "Educational group project in creative design at Heriot-Watt",
"main": "server/server.js",
"scripts": {
"lint": "eslint server && eslint public/src",
"start": "npm run build && npm run start:server",
"start:server": "node server/server.js",
"test": "npm run lint && jest",
"build": "npm run build:inject && npm run build:script && npm run build:unject",
"build:inject": "node data/mapbox_inject.js",
"build:script": "rollup --config config/rollup.config.main.js",
"build:unject": "node data/mapbox_remove.js",
"build:data": "node data/build_db.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kymckay/f28cd-project.git"
},
"keywords": [
"f28cd",
"education"
],
"author": "Group 4",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/kymckay/f28cd-project/issues"
},
"homepage": "https://github.com/kymckay/f28cd-project#readme",
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/preset-env": "^7.12.0",
"@fast-csv/parse": "^4.3.6",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"core-js": "^3.6.5",
"eslint": "^7.12.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"exceljs": "^4.2.0",
"jest": "^26.6.3",
"rollup": "^2.30.0"
},
"dependencies": {
"express": "^4.16.4",
"mongodb": "^3.6.4"
},
"engines": {
"node": "14.x"
}
}