-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 937 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
{
"name": "todolist",
"version": "1.0.0",
"description": "Simple ToDo app",
"main": "src/js/index.js",
"scripts": {
"dev:script": "npx rollup -w -c --environment BUILD:development",
"dev:style": "npx node-sass -w ./src/scss/main.scss ./dist/style.css",
"dev": "npm-run-all --parallel dev:style dev:script",
"build:script": "npx rollup -c --environment BUILD:production",
"build:style": "npx node-sass ./src/scss/main.scss ./dist/style.css",
"build": "npm-run-all --parallel build:style build:script"
},
"keywords": [
"todo",
"list",
"tasks"
],
"author": "v.fedoseev",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"node-sass": "^4.9.3",
"npm-run-all": "^4.1.3",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-uglify": "^4.0.0"
}
}