-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "heresy-todo",
"version": "1.1.1",
"description": "The Heresy version of the famous TodoMVC",
"scripts": {
"build": "npm run css && npm run js",
"css": "cp node_modules/todomvc-app-css/index.css css/",
"js": "npm run rollup:new && npm run rollup:old",
"rollup:new": "cd rollup && rollup --config new.js",
"rollup:old": "cd rollup && rollup --config old.js",
"start": "http-server"
},
"keywords": [
"todo",
"mvc",
"wicked",
"elements"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@ungap/degap": "^0.1.4",
"drop-babel-typeof": "^1.0.3",
"http-server": "^0.11.1",
"rollup": "^1.26.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"todomvc-app-css": "^2.3.0",
"uglify-js": "^3.6.7"
},
"dependencies": {
"heresy": "^0.17.3"
}
}