-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "webdebs-links",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack --config ./webpack/server.config.js && babel-node server",
"build": "webpack -p --config ./webpack/production.config.js",
"lint": "eslint ./src",
"test": "jest",
"postinstall": "npm run build"
},
"author": "Michele Bertoli",
"license": "MIT",
"dependencies": {
"autoprefixer-core": "^5.2.1",
"babel": "^5.6.14",
"babel-loader": "^5.2.2",
"cookie-dough": "0.0.6",
"cookie-parser": "^1.3.5",
"css-loader": "^0.15.5",
"express": "^4.13.0",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"moment": "^2.10.3",
"postcss-loader": "^0.5.1",
"react": "^0.13.3",
"react-router": "^0.13.3",
"superagent": "^1.2.0",
"webpack": "^1.10.1",
"when": "^3.7.3"
},
"devDependencies": {
"babel-eslint": "^3.1.20",
"babel-jest": "^5.3.0",
"eslint-plugin-react": "^2.6.4",
"jest-cli": "^0.4.15",
"react-hot-loader": "^1.2.7",
"style-loader": "^0.12.3",
"webpack-dev-hmr": "^1.0.0",
"webpack-dev-middleware": "^1.2.0",
"webpack-dev-server": "^1.10.1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
}
}