forked from shanewilson/react-webpack-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.79 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "react-webpack-example",
"private": true,
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/shanewilson/react-webpack-example.git"
},
"homepage": "https://github.com/shanewilson/react-webpack-example",
"author": {
"name": "Shane Wilson",
"email": "shanezilla@gmail.com",
"url": "https://github.com/shanewilson/"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
],
"moduleFileExtensions": [
"js",
"json",
"jsx"
],
"testFileExtensions": [
"js"
],
"testDirectoryName": "unit",
"testPathDirs": [
"<rootDir>/tests/"
]
},
"dependencies": {
"react": "0.13.2",
"react-router": "0.13.2",
"react-tools": "0.13.2"
},
"devDependencies": {
"autoprefixer-core": "^5.1.11",
"babel": "^5.1.11",
"babel-core": "^5.1.11",
"babel-eslint": "^3.0.1",
"babel-jest": "^5.0.1",
"babel-loader": "^5.0.0",
"babel-runtime": "^5.1.11",
"compression-webpack-plugin": "^0.2.0",
"css-loader": "^0.11.0",
"csswring": "^3.0.4",
"eslint": "^0.20.0",
"eslint-loader": "^0.11.1",
"eslint-plugin-react": "^2.2.0",
"extract-text-webpack-plugin": "^0.7.0",
"flowcheck": "^0.2.6",
"flowcheck-loader": "^1.0.0",
"flux": "^2.0.1",
"font-awesome": "^4.3.0",
"font-awesome-webpack": "0.0.3",
"graceful-fs": "^3.0.6",
"html-minifier": "^0.7.2",
"immutable": "3.7.2",
"jest": "^0.1.39",
"jest-cli": "^0.4.0",
"jsx-loader": "0.13.1",
"nightwatch": "0.6.4",
"npm-check-updates": "1.5.1",
"postcss-bem-linter": "^0.2.0",
"postcss-calc": "^4.0.1",
"postcss-color-function": "^1.2.0",
"postcss-custom-media": "^3.0.0",
"postcss-custom-properties": "^3.3.0",
"postcss-custom-selectors": "^1.1.0",
"postcss-discard-duplicates": "^1.1.2",
"postcss-import": "^5.2.2",
"postcss-loader": "^0.4.1",
"postcss-media-minmax": "^1.1.0",
"react-cookie": "^0.1.8",
"react-hot-loader": "^1.2.5",
"script-loader": "0.6.1",
"selenium-standalone": "4.4.0",
"style-loader": "0.11.0",
"stylus-loader": "1.1.0",
"suitcss-base": "^0.8.0",
"url-loader": "0.5.5",
"webpack": "^1.8.9",
"webpack-dev-server": "^1.8.2",
"webpack-postcss-tools": "^1.0.2"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"upgrade": "npm-check-updates -u && npm test",
"test": "jest",
"browser": "nightwatch -e firefox,chrome",
"prestart": "npm install",
"start": "webpack-dev-server --config webpack.dev.config.js --hot --inline -d",
"prebuild": "npm install",
"build": "rm -rf dist/ && webpack",
"dist": "npm test && npm run build && npm run browser"
}
}