-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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
{
"name": "svelte-seed",
"version": "1.0.0",
"description": "A seed for starting svelte project, including HMR",
"main": "index.js",
"author": "Antony Jones",
"license": "MIT",
"scripts": {
"clean": "rm ./dist/*",
"build": "NODE_ENV=production parcel build index.html -d dist",
"watch:only": "NODE_ENV=development parcel watch index.html --no-cache",
"dev": "NODE_ENV=development parcel index.html --no-cache",
"zip": "npm run build && bestzip ./dist/package.zip ./dist/*",
"lint": "eslint .",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register './!(node_modules)/**/**.+(spec).js'"
},
"svelte": {
"compilerOptions": {
"css": true
}
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"bestzip": "^2.0.0",
"code": "^5.2.3",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"parcel-bundler": "^1.10.3",
"parcel-plugin-svelte": "^2.0.0",
"svelte": "^2.15.3"
},
"dependencies": {},
"now": {
"static": true,
"public": "dist"
}
}