-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.98 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "web-boilerplate",
"version": "1.1.0",
"description": "A template for new front-end projects.",
"main": "index.js",
"scripts": {
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint 'src/css/**/*.css' || true",
"lint:js": "eslint --format 'node_modules/eslint-friendly-formatter' --ext .js,.jsx ./src ./modules",
"lint:dev": "npm run lint -- -w",
"pretest": "npm run lint:css && npm run lint:js",
"test": "NODE_ENV=test mocha --require babel-register --opts 'support/mocha.opts'",
"test:dev": "npm test -- -w",
"build": "webpack -d --progress --colors",
"build:production": "NODE_ENV=production webpack --progress --colors",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smashingboxes/web-boilerplate.git"
},
"author": "Smashing Boxes",
"private": true,
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/smashingboxes/web-boilerplate/issues"
},
"homepage": "https://github.com/smashingboxes/web-boilerplate#readme",
"dependencies": {
"axios": "^0.17.1",
"es6-promise": "^4.2.4",
"immutable": "^3.8.2",
"keymirror": "^0.1.1",
"normalize.css": "^5.0.0",
"prop-types": "^15.6.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-immutable-proptypes": "^2.1.0",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.0",
"redux-form": "^7.3.0",
"redux-immutable": "^4.0.0",
"redux-persist-cookie-storage": "^0.3.0",
"redux-persist-immutable": "^4.3.1",
"redux-thunk": "^2.1.0",
"sanitize.css": "^4.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"chai-immutable": "^1.6.0",
"cheerio": "^0.22.0",
"clean-webpack-plugin": "^0.1.14",
"css-loader": "^0.28.1",
"enzyme": "^2.7.0",
"eslint": "^3.12.2",
"eslint-config-smashing-boxes": "^2.0.0",
"eslint-friendly-formatter": "^2.0.6",
"eslint-loader": "^1.6.1",
"eslint-plugin-react": "^6.8.0",
"extract-text-webpack-plugin": "^3.0.2",
"faker": "^3.1.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.30.1",
"inline-manifest-webpack-plugin": "^3.0.1",
"mocha": "^4.1.0",
"postcss-apply": "^0.4.0",
"postcss-assets": "^4.1.0",
"postcss-cssnext": "^2.9.0",
"postcss-hexrgba": "^0.2.1",
"postcss-import": "^9.0.0",
"postcss-loader": "^1.2.2",
"postcss-nested": "^1.0.0",
"postcss-reporter": "^3.0.0",
"precss": "^1.4.0",
"react-addons-test-utils": "^15.4.1",
"sinon": "^4.3.0",
"sinon-chai": "^2.14.0",
"style-loader": "^0.13.1",
"stylelint": "^7.7.0",
"url-loader": "^0.5.7",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
}
}