-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.92 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
{
"name": "mtk-boilerplate",
"version": "1.0.0",
"description": "This is the mtk-boilerplate.",
"main": "src/server/index.js",
"scripts": {
"test": "BABEL_JEST_STAGE=0 jest",
"lint": "eslint --ext .js,.jsx ./ && echo 'lint succesed'",
"jscs": "jscs ./",
"clean": "rm -r -f build/*",
"build": "npm run clean && webpack",
"watch": "webpack-dev-server --colors --inline --hot --content-base ./dist",
"start": "node src/server/index.js",
"postinstall": "webpack"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testPathDirs": [
"./src/app",
"./src/client"
],
"testFileExtensions": [
"jsx",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"jsx"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/debug"
]
},
"pre-commit": [
"lint",
"jscs",
"test"
],
"author": "MediaTek",
"repository": {
"type": "git",
"url": "https://github.com/Mediatek-Cloud/mtk-boilerplate"
},
"license": "MIT",
"devDependencies": {
"autoprefixer-loader": "^1.2.0",
"babel": "^5.2.17",
"babel-core": "^5.1.11",
"babel-eslint": "^3.0.1",
"babel-jest": "^5.2.0",
"babel-loader": "^5.0.0",
"css-loader": "^0.10.1",
"eslint": "^0.20.0",
"eslint-plugin-babel": "^1.0.0",
"eslint-plugin-react": "^2.6.4",
"esprima-fb": "^15001.1.0-dev-harmony-fb",
"file-loader": "^0.8.1",
"html-loader": "^0.2.3",
"html-webpack-plugin": "^1.3.0",
"jest-cli": "^0.4.1",
"jscs": "^1.12.0",
"pre-commit": "Mediatek-Cloud/pre-commit",
"react-hot-loader": "^1.2.7",
"style-loader": "^0.11.0",
"stylus-loader": "^1.1.0",
"url-loader": "^0.5.5",
"webpack": "^1.7.3",
"webpack-dev-server": "^1.8.2"
},
"dependencies": {
"debug": "^2.1.3",
"express": "^4.12.3",
"react": "^0.13.1"
}
}