-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.89 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
{
"name": "bb-react-app",
"title": "BB React App",
"version": "1.0.0",
"description": "Boilerplate for BB React Apps",
"authors": [
"Andrew Blackledge (https://github.com/aFrontendDev)"
],
"repository": {
"type": "git",
"url": "git://github.com/buildingblocks/bb-react-prototype.git"
},
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack -p --env prod",
"serve": "webpack -p --env prod && node server",
"visualref": "gulp backstop-ref",
"visualtest": "gulp backstop-test",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"setupFiles": [
"./test/jestsetup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"dependencies": {
"css-loader": "^0.28.4",
"express": "^4.15.3",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.29.0",
"node-sass": "^4.5.3",
"path": "^0.12.7",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.6.1"
},
"devDependencies": {
"axios": "^0.16.2",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"backstopjs": "^3.0.32",
"copy-webpack-plugin": "^4.0.1",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"enzyme-to-json": "^3.2.2",
"eslint": "^4.4.1",
"eslint-loader": "^1.9.0",
"file-loader": "^0.11.2",
"gulp": "^3.9.1",
"gulp-connect": "^5.0.0",
"gulp-shell": "^0.6.3",
"jest": "^21.2.1",
"react-test-renderer": "^16.1.0"
}
}