-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
35 lines (35 loc) · 904 Bytes
/
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
{
"name": "firesize",
"version": "0.2.0",
"dependencies": {
"basscss": "^5.0.1",
"css-loader": "^0.9.1",
"file-loader": "^0.8.1",
"highlight.js": "^8.4.0",
"jsx-loader": "^0.12.2",
"react": "^0.12.2",
"react-addons": "^0.9.1-deprecated",
"react-router": "^0.12.4",
"sass-loader": "^0.4.1",
"style-loader": "^0.8.3",
"superagent": "^0.21.0",
"url-loader": "^0.5.5",
"webpack": "^1.7.2"
},
"scripts": {
"postinstall": "npm run bundle",
"bundle": "webpack --optimize-minimize --optimize-occurence-order",
"watch": "webpack --progress --colors --watch",
"test": "jest assets/javascripts"
},
"devDependencies": {
"jest-cli": "^0.4.0",
"react-tools": "^0.12.2"
},
"jest": {
"scriptPreprocessor": "<rootDir>/jest_processor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
}
}