-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.48 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.48 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
{
"name": "saleon-client",
"version": "2.0.0",
"description": "SaleOn client",
"scripts": {
"start": "npm run server & npm run watch",
"server": "node server.js",
"build:prod": "browserify src/js/index.js -o dist/app.js -t [ babelify --presets [ es2015 react ] ] --extension jsx",
"watch": "watchify src/js/index.js --debug -o dist/app.js -t [ babelify --presets [ es2015 react ] ] --extension jsx -v",
"lint": "eslint .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/akgalsss/saleon-rr.git"
},
"author": "Andrey Kuts <akgalsss@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.4.5",
"babel-jest": "^6.0.1",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.15.0",
"express": "^4.13.4",
"flux": "^2.1.1",
"history": "^1.17.0",
"jest-cli": "^0.8.2",
"material-ui": "^0.15.0",
"quagga": "^0.11.2",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-router": "^2.4.1",
"react-tap-event-plugin": "^1.0.0",
"watchify": "^3.7.0"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs"
]
}
}