-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "trello-form",
"version": "0.0.0",
"description":
"A simple form for users to submit feature requests to a trello board",
"main": "index.html",
"scripts": {
"lint": "eslint --ext .js --ext .jsx ./app ./gulpfile.js",
"fix": "eslint --ext .js --ext .jsx --fix ./app ./gulpfile.js",
"serve": "gulp serve",
"start": "gulp serve",
"dist": "gulp --verbose dist",
"predist": "npm run lint",
"precommit": "npm run fix && pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "https://github.com/cognisant/trello-form.git"
},
"author": "Rich Knight",
"license": "None",
"bugs": {
"url": "https://github.com/cognisant/trello-form/issues"
},
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"devDependencies": {
"browserify": "^16.2.2",
"connect": "^3.6.6",
"es6ify": "^1.6.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"gulp": "^3.9.1",
"gulp-cli": "^2.0.1",
"gulp-livereload": "^3.8.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^4.0.1",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^3.0.0",
"husky": "^0.14.3",
"open": "^0.0.5",
"prettier": "1.12.1",
"pretty-quick": "^1.4.1",
"reactify": "^1.1.1",
"serve-static": "^1.13.2",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.0"
}
}