-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·79 lines (79 loc) · 2.02 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
77
78
79
{
"name": "react-spa-boilerplate",
"version": "0.0.1",
"description": "React SPA Boilerplate for open source projects.",
"scripts": {
"start": "webpack-dev-server --inline --content-base build/",
"test": "./node_modules/.bin/mocha tests/**/*.spec.js --require babel-register",
"test:watch": "./node_modules/.bin/mocha tests/**/*.spec.js --require babel-register --watch",
"test:coverage": "nyc npm test",
"deploy": "gh-pages -d build",
"build": "webpack --config webpack.config.prod.js"
},
"nyc": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
],
"extension": [
".jsx"
]
},
"repository": {
"type": "git",
"url": "https://github.com/LucasBassetti/react-spa-boilerplate"
},
"keywords": [
"react",
"webpack",
"airbnb",
"eslint",
"boilerplate",
"starter",
"open source"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/LucasBassetti/react-spa-boilerplate/issues"
},
"homepage": "",
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.7.7",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "6.24.0",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.8",
"copy-webpack-plugin": "^2.1.1",
"css-loader": "^0.28.0",
"enzyme": "^2.8.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"postcss-loader": "^1.3.3",
"precss": "^1.4.0",
"react-addons-test-utils": "^15.5.0",
"style-loader": "^0.16.1",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"devicon": "^2.0.0",
"gh-pages": "^1.0.0",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-simple-chatbot": "^0.1.10"
}
}