-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 773 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 773 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
{
"name": "snow",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm run compile & servor . index.html 8080 --reload --browse",
"compile": "babel src --out-dir public/ --watch --presets @babel/preset-react --plugins @babel/plugin-syntax-dynamic-import",
"prepare": "snowpack",
"cleanStart": "rm -rf node_modules && rm -rf web_modules && npm i && npm run dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.8.3",
"react": "npm:@reactesm/react@^0.1.0",
"react-dom": "npm:@reactesm/react-dom@^0.1.1"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/preset-react": "^7.6.3",
"servor": "^3.0.8",
"snowpack": "^1.0.5"
}
}