-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·48 lines (48 loc) · 1.43 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
{
"name": "react-sinatra-starter",
"version": "1.0.1",
"description": "example sinatra-react app",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --content-base lib/app/views --hot --inline",
"build": "webpack --config webpack.prod.config.js",
"lint": "eslint src/**",
"lint:watch": "esw -w src/**",
"test": "mocha --compilers js:babel-core/register ./test/**/*.spec.js --require ignore-styles"
},
"author": "",
"license": "MIT",
"dependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.24.1",
"css-loader": "^0.28.0",
"enzyme": "^2.8.1",
"expect": "^1.20.2",
"express": "^4.15.2",
"mocha": "^3.2.0",
"node-sass": "^4.5.2",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"webpack": "^2.3.3"
},
"devDependencies": {
"babel-eslint": "^7.2.2",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"eslint-watch": "^3.1.0",
"ignore-styles": "^5.0.1",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4",
"webpack-dev-middleware": "^1.10.1",
"webpack-dev-server": "^2.4.2",
"webpack-hot-middleware": "^2.18.0"
}
}