This repository was archived by the owner on Jun 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.53 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
{
"name": "react-starter",
"version": "2.0.0",
"description": "React starter project",
"keywords": [
"react",
"bootstrap",
"babel",
"cssnext",
"postcss"
],
"author": "Oleg Kislitsyn",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@git-ok:olegafx/dev.sm-tr.com.git"
},
"main": "src/index.js",
"scripts": {
"build": "./node_modules/.bin/webpack -p --bail --config ./webpack.config.prod.js",
"start": "node server.js"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"eslint": "*.js",
"stylelint": "*.css"
},
"devDependencies": {
"babel-eslint": "6.1.0",
"eslint": "3.0.1",
"eslint-plugin-react": "5.2.2",
"stylelint": "6.8.0",
"webpack-dev-server": "1.14.1",
"why-did-you-update": "0.0.8"
},
"dependencies": {
"autoprefixer": "6.4.1",
"babel-core": "6.14.0",
"babel-loader": "6.2.5",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.12.0",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"babel-runtime": "6.9.2",
"css-loader": "0.25.0",
"extract-text-webpack-plugin": "1.0.1",
"lint-staged": "3.0.1",
"lodash": "4.13.1",
"postcss-loader": "0.13.0",
"pre-commit": "1.1.3",
"react": "15.3.1",
"react-dom": "15.3.1",
"react-hot-loader": "3.0.0-beta.3",
"react-router": "4.0.0-2",
"webpack": "1.13.2",
"whatwg-fetch": "1.0.0"
}
}