-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
65 lines (65 loc) · 1.82 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
{
"name": "rambler-webpack-boilerplate",
"version": "1.0.0",
"description": "Use it for simple and fast web development",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development webpack-dev-server --progress --port 8090",
"build": "rm -rf dist/* && NODE_ENV=production webpack -p --colors",
"build-test": "node .bin/build-test",
"test": "NODE_ENV=tdd npm run build-test",
"test-ci": "NODE_ENV=test-ci testem ci"
},
"devDependencies": {
"autoprefixer": "6.7.7",
"babel-core": "6.24.1",
"babel-loader": "6.4.1",
"babel-preset-es2015": "6.24.1",
"chai": "3.5.0",
"css-loader": "0.28.0",
"eslint": "3.19.0",
"eslint-config-rambler": "0.2.7",
"eslint-loader": "1.7.1",
"eslint-plugin-react": "6.10.3",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.1",
"glob": "7.1.1",
"html-webpack-plugin": "2.28.0",
"json-loader": "0.5.4",
"manifest-revision-webpack-plugin": "0.4.0",
"mocha": "3.0.2",
"npmlog": "4.0.2",
"path": "0.12.7",
"phantomjs-prebuilt": "2.1.11",
"postcss-loader": "1.3.3",
"pug": "2.0.0-beta11",
"pug-loader": "2.3.0",
"pug-walk": "1.1.1",
"raw-loader": "0.5.1",
"stylint": "1.5.9",
"stylint-loader": "1.0.0",
"stylus": "0.54.5",
"stylus-loader": "3.0.1",
"testem": "1.10.3",
"url-loader": "0.5.8",
"webpack": "2.3.3",
"webpack-dev-server": "2.4.2"
},
"babel": {
"presets": [
"es2015"
]
},
"repository": {
"type": "git",
"url": "https://github.com/rambler-digital-solutions/rambler-webpack-boilerplate"
},
"author": "Mike Chernobrov <[email protected]> (http://rambler-co.ru)",
"license": "MIT",
"dependencies": {
"backbone": "1.3.3",
"fullpage.js": "2.9.4",
"jquery": "3.2.1",
"underscore": "1.8.3"
}
}