-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.09 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
{
"name": "ssnext",
"version": "0.0.1",
"description": "work in progress",
"repository": {
"type": "git",
"url": "https://github.com/sikuli/ssNext.git"
},
"scripts": {
"start": "cross-env NODE_ENV=development electron .",
"watch": "cross-env NODE_ENV=development webpack-dev-server --inline --hot",
"dev": "concurrently --kill-others \"npm run watch\" \"npm run start\"",
"build": "cross-env NODE_ENV=production webpack --progress",
"test": "mocha",
"cover": "istanbul cover _mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"main": "src/main.js",
"contributors": [
{
"name": "Khalid Alharbi",
"url": "http://kalharbi.com"
},
{
"name": "Tom Yeh",
"url": "http://tomyeh.info"
}
],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"baggage-loader": "^0.2.4",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.9",
"concurrently": "^2.0.0",
"coveralls": "^2.11.9",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"devtron": "^1.1.0",
"electron-prebuilt": "^1.0.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"node-sass": "^3.7.0",
"sass-lint": "^1.7.0",
"sass-loader": "^3.2.0",
"sasslint-webpack-plugin": "^1.0.3",
"style-loader": "^0.13.1",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"material-ui": "^0.15.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-tap-event-plugin": "^1.0.0"
}
}