-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.64 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
{
"name": "optimism",
"version": "0.1.0",
"description": "Software to help run [DoES Liverpool](https://doesliverpool.com)",
"workspaces": [
"api",
"website"
],
"main": "app.js",
"scripts": {
"test-api": "cross-env NODE_ENV=testing mocha api --recursive --exit --timeout 3500 --require mocha-suppress-logs",
"website": "nodemon --watch website website/app.js",
"api": "nodemon --watch api api/app.js",
"both": "concurrently -n \"website,api\" \"npm run website\" \"npm run api\"",
"css": "sass website/scss/optimism.scss:website/static/css/optimism.css",
"css-watch": "sass website/scss/optimism.scss:website/static/css/optimism.css --watch",
"dev": "concurrently -n \"website,api,sass\" \"npm run website\" \"npm run api\" \"npm run css-watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/DoESLiverpool/optimism.git"
},
"author": "DoES Liverpool",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/DoESLiverpool/optimism/issues"
},
"homepage": "https://github.com/DoESLiverpool/optimism#readme",
"dependencies": {
"dotenv": "^8.2.0",
"node-gyp": "^9.0.0",
"supertest": "^6.1.3"
},
"devDependencies": {
"concurrently": "^5.2.0",
"cross-env": "^7.0.3",
"cypress": "^10.3.0",
"docdash": "^1.2.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^38.1.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jsdoc": "^3.6.10",
"mocha-suppress-logs": "^0.3.1",
"nodemon": "^2.0.4",
"sass": "^1.49.9"
}
}