-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
88 lines (88 loc) · 2.52 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
80
81
82
83
84
85
86
87
88
{
"name": "riot-book-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node scripts/serve",
"build": "npm run lint && npm run bundle && npm run test:unit",
"bundle:app": "node_modules/.bin/webpack --config webpack.config.js",
"bundle:test": "node_modules/.bin/webpack --config test/webpack.config.test.js",
"bundle": "npm run bundle:app && npm run bundle:test",
"lint:js": "node_modules/.bin/eslint src/**.js",
"lint:tags": "node_modules/.bin/eslint src/**.tag",
"lint": "npm run lint:js && npm run lint:tags",
"test:unit": "node_modules/.bin/karma start test/karma.conf.js",
"test": "npm run lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neetjn/riot-book-example.git"
},
"keywords": [
"riot",
"riotjs",
"example",
"boilerplate",
"app",
"javascript",
"node"
],
"author": "",
"contributors": [
{
"name": "John Nolette",
"email": "[email protected]",
"url": "https://github.com/neetjn"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/neetjn/riot-book-example/issues"
},
"homepage": "https://github.com/neetjn/riot-book-example#readme",
"devDependencies": {
"animate.css": "^3.5.2",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"bulma": "^0.6.2",
"bulmaswatch": "^0.5.2",
"chai": "^4.1.2",
"chart.js": "^2.7.1",
"css-loader": "^0.28.9",
"electron": "^1.7.11",
"eslint": "4.1.1",
"eslint-loader": "1.6.1",
"eslint-plugin-riot": "0.1.7",
"express": "^4.16.2",
"file-loader": "^1.1.6",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^2.30.1",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-electron": "^5.2.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^5.0.0",
"node-sass": "^4.7.2",
"raw-loader": "^0.5.1",
"riot": "^3.8.1",
"riot-animore": "^1.0.0",
"riot-hot-reload": "^1.0.0",
"riot-placeholder": "^1.0.6",
"riot-route": "^3.1.2",
"riot-tag-loader": "^2.0.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^2.0.4",
"webpack-dev-server": "^2.11.0",
"webpack-hot-middleware": "^2.21.0",
"webpack-html-plugin": "^0.1.1"
}
}