-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) ยท 1.17 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
{
"name": "to-do-list-with-vanilla-js",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-p dev watch:**",
"sass": "sass scss:css",
"watch:sass": "npm run sass -- --watch",
"dev": "live-server",
"build:sass": "npm run sass -- --no-source-map",
"build:postcss": "postcss css/style.css -o css/style.css",
"build": "run-s build:sass build:postcss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chacha912/To-Do-List-with-Vanilla-JS.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chacha912/To-Do-List-with-Vanilla-JS/issues"
},
"homepage": "https://github.com/chacha912/To-Do-List-with-Vanilla-JS#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"chokidar-cli": "^2.1.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.23.4",
"live-server": "^1.2.1",
"normalize-scss": "^7.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"postcss-csso": "^5.0.1",
"sass": "^1.32.13"
}
}