-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.02 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
{
"name": "mithril-skeleton",
"version": "1.0.1",
"description": "Mithril Skeleton",
"main": "route.js",
"repository": "https://github.com/adamlee-ARC/mithril-skeleton.git",
"author": "Adam Lee <adam.lee@activatedresearch.com>",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"test": "ospec",
"build": "NODE_ENV=production webpack --config webpack.production.js",
"start": "NODE_ENV=development webpack-dev-server --open --config webpack.development.js"
},
"dependencies": {
"bottlejs": "^1.7.2",
"mithril": "^2.0.4",
"tachyons": "^4.11.1"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"html-webpack-plugin": "^3.2.0",
"ospec": "^4.0.1",
"style-loader": "^1.1.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
}
}