-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.93 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
78
79
{
"name": "localhackday2017",
"description": "RPG Battle System",
"version": "0.1.0",
"author": {
"name": "Mark Hernandez",
"email": "markedcode@gmail.com"
},
"license": "MIT",
"bin": {},
"main": "src/index.js",
"scripts": {
"build": "gulp build",
"build:prod": "gulp build:prod",
"dev": "gulp",
"lint": "standard",
"lint:fix": "standard --fix",
"report": "nyc report --reporter=lcov",
"test": "cross-env NODE_ENV=test npm run test:suite",
"test:suite": "standard && nyc mocha --require babel-register",
"test:ui": "babel-node test/ui"
},
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"fixture",
"it",
"test"
]
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"browser-sync": "^2.18.13",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.1",
"cssnano": "^3.10.0",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-ejs": "^3.1.0",
"gulp-htmlmin": "^3.0.0",
"gulp-hub": "^0.8.0",
"gulp-less": "^3.3.2",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^7.0.0",
"gulp-sequence": "^0.4.6",
"gulp-sourcemaps": "^2.6.1",
"jsdoc-to-markdown": "^3.0.2",
"mocha": "^4.0.1",
"node-static": "^0.7.10",
"nyc": "^11.3.0",
"standard": "^10.0.3",
"testcafe": "^0.18.4",
"testcafe-react-selectors": "^1.0.2",
"webpack": "^3.8.1",
"webpack-merge": "^4.1.1",
"webpack-stream": "^4.0.0"
},
"dependencies": {
"mini.css": "^2.3.7",
"mini.css-react": "^1.0.3",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6"
}
}