-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 854 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 854 Bytes
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
{
"name": "metal-math-empty",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:dev": "yarn run webpack --mode development --watch",
"build:prod": "yarn run webpack --mode production",
"start": "http-server . -p 4000",
"webpack": "webpack src/App.js --output-path='./dist/globals' --output-filename='bundle.js' --output-library Metal --output-library-target this"
},
"author": "",
"license": "ISC",
"dependencies": {
"metal-jsx": "^2.16.4"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.6.1",
"babel-preset-metal-jsx": "^0.0.2",
"css-loader": "^0.28.4",
"http-server": "^0.9.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.14"
}
}