-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.36 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.36 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
{
"name": "elm-rpg",
"version": "0.0.0",
"description": "A test application following elm-tutorial",
"main": "index.js",
"repository": "https://github.com/herbertfj/elm-rpg.git",
"author": "Herbert Freyre",
"license": "MIT",
"scripts": {
"server": "node server/src/server.js",
"build": "webpack",
"watch": "webpack --watch",
"dev": "webpack-dev-server --port 3000",
"lint": "eslint --fix 'client/src/**/*.js' 'server/**/*.js' && elm-format client/src/ client/tests --yes",
"pretest": "elm-test --add-dependencies client/tests/elm-package.json",
"test": "elm-test client/tests/**/*.elm",
"start": "nf start"
},
"dependencies": {
"font-awesome": "4",
"global": "^4.3.1",
"json-server": "0.9.5"
},
"devDependencies": {
"ace-css": "1.1",
"css-loader": "^0.26.2",
"elm": "^0.18.0",
"elm-format": "^0.6.1-alpha",
"elm-test": "^0.18.6",
"elm-webpack-loader": "^4.2.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.2.0",
"file-loader": "^0.10.1",
"foreman": "^2.0.0",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-dev-server": "^2.4.1"
}
}