forked from leo-daniel/strive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.86 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.86 KB
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
56
57
58
59
60
61
{
"name": "strive-app",
"version": "1.0.0",
"description": "Strive app is a goal & task -based dashboard app",
"main": "server.js",
"directories": {
"doc": "docs",
"test": "test"
},
"dependencies": {
"body-parser": "^1.18.3",
"bulma-calendar": "^4.0.1",
"chai": "^4.1.2",
"chai-datetime": "^1.5.0",
"chai-http": "^4.0.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"mysql2": "^1.6.1",
"npm": "^6.4.0",
"sequelize": "^4.38.0"
},
"devDependencies": {
"bulma": "^0.7.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "3.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.11.0",
"eslint-plugin-standard": "^3.1.0",
"node-sass": "^4.9.3",
"prettier": "1.14.2"
},
"scripts": {
"lint": "eslint **/*.js --quiet",
"fix": "eslint --fix .",
"test": "npm run lint && NODE_ENV=test mocha -u tdd --reporter spec --exit",
"css-build": "node-sass --omit-source-map-url public/styles/styles.css public/styles/sassStyles.css",
"css-watch": "npm run css-build -- --watch",
"css-start": "npm run css-watch",
"start-dev": "concurrently \"npm start\" \"npm run css-start\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/leo-daniel/strive.git"
},
"author": "Greg Bremble, Leo Daniel, Jordan Miller, Chris Mueller, Karishma Patel",
"license": "ISC",
"bugs": {
"url": "https://github.com/leo-daniel/strive/issues"
},
"homepage": "https://github.com/leo-daniel/strive#readme"
}