-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.47 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": "TaskMate",
"version": "1.0.0",
"description": "TaskMate: Tracks tasks for small teams",
"main": "index.js",
"directories": {
"doc": "docs"
},
"engines": {
"node": "8.9.0",
"npm": "6.4.1"
},
"scripts": {
"client-install": "npm install --prefix client",
"client": "npm start --prefix client",
"server-install": "npm install --prefix server",
"server": "npm run server --prefix server",
"css-watch": "sass --watch client/public/stylesheets/main.scss:client/src/index.css",
"dev": "concurrently \"npm run server\" \"npm run client\" \"npm run css-watch\"",
"start": "npm run server && npm run client",
"heroku-postbuild": "npm install --prefix client && npm run build --prefix client && npm install --prefix server && npm run build --prefix server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitthal-inani/EAD"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
},
"homepage": "https://github.com/vitthal-inani/EAD",
"dependencies": {
"concurrently": "^4.0.1"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.2.0",
"webpack-dev-server": "^3.1.7"
}
}