-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.08 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "trellotogithubprojects",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"scripts": {
"precommit": "lint-staged",
"dev": "NODE_ENV=development nodemon --inspect=4343 -w server server/index.js",
"build": "next build",
"start": "npm run build && NODE_ENV=production node server/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"*.js": "eslint",
"*.scss": "stylelint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okcoker/TrelloToGithubProjects.git"
},
"bugs": {
"url": "https://github.com/okcoker/TrelloToGithubProjects/issues"
},
"author": "Sean Coker <[email protected]>",
"license": "ISC",
"dependencies": {
"autoprefixer": "7.2.5",
"babel-core": "6.26.0",
"babel-eslint": "8.0.3",
"babel-loader": "7.1.2",
"babel-plugin-styled-components": "1.4.0",
"babel-preset-env": "1.6.1",
"babel-preset-stage-0": "6.24.1",
"body-parser": "1.18.2",
"classnames": "2.2.5",
"cookie-parser": "1.4.3",
"cssnano": "3.10.0",
"dotenv": "4.0.0",
"eslint": "4.18.2",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-react": "7.5.1",
"express": "4.16.2",
"express-https-redirect": "1.0.0",
"github": "13.0.1",
"helmet": "3.9.0",
"hpp": "0.2.2",
"isomorphic-fetch": "2.2.1",
"js-cookie": "2.2.0",
"next": "4.2.3",
"next-redux-wrapper": "1.3.5",
"node-sass": "4.7.2",
"node-trello": "1.3.0",
"postcss-easy-import": "3.0.0",
"postcss-loader": "2.0.10",
"raw-loader": "0.5.1",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-redux": "5.0.6",
"redux": "3.7.2",
"redux-logger": "3.0.6",
"redux-thunk": "2.2.0",
"sass-loader": "6.0.6",
"serve-favicon": "2.4.5",
"styled-components": "2.4.0",
"stylelint": "8.4.0",
"stylelint-config-standard": "18.0.0",
"stylelint-scss": "2.2.0"
},
"devDependencies": {
"husky": "0.14.3",
"ip": "1.1.5",
"lint-staged": "6.0.1",
"nodemon": "1.14.11"
}
}