forked from GoogleChromeLabs/progressive-tooling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 848 Bytes
/
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
{
"private": true,
"name": "progressive-tooling",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "if-env NODE_ENV=production && npm run -s serve || npm run -s dev",
"build": "preact build --template src/index.html",
"serve": "preact build --template src/index.html && preact serve",
"dev": "preact watch --template src/index.html",
"lint": "eslint src"
},
"eslintConfig": {
"extends": "eslint-config-synacor"
},
"eslintIgnore": [
"build/*"
],
"devDependencies": {
"babel-plugin-emotion": "^9.1.2",
"eslint": "^4.5.0",
"eslint-config-synacor": "^1.1.0",
"if-env": "^1.0.0",
"preact-cli": "^2.0.0",
"preact-cli-workbox-plugin": "^1.1.1"
},
"dependencies": {
"emotion": "^9.1.2",
"emotion-theming": "^9.1.2",
"preact": "^8.2.1",
"preact-compat": "^3.17.0",
"preact-emotion": "^9.1.2"
}
}