-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.93 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "schematics",
"version": "1.2.3",
"description": "Schematics: A Love Story",
"main": "index.html",
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"concurrently": "^6.2.0",
"cssnano": "^5.0.6",
"eslint": "^7.26.0",
"eslint-plugin-jest": "^24.3.6",
"foreach-cli": "^1.8.1",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"livereload": "^0.9.3",
"npm-watch": "^0.9.0",
"postcss": "^8.3.0",
"postcss-cli": "^8.3.1",
"postcss-custom-media": "^8.0.0",
"postcss-import": "^14.0.2",
"postcss-nested": "^5.0.5",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"terser": "^5.7.0"
},
"scripts": {
"test": "jest",
"lint:css": "stylelint ./src/**/*.css",
"lint:js": "eslint ./src/**/*.js",
"postcss": "postcss src/css/main.css --use postcss-import postcss-custom-media postcss-nested -o src/main.css --watch --verbose",
"compress:css": "postcss src/css/main.css --use postcss-import postcss-custom-media postcss-nested cssnano --no-map -o src/main.css",
"compress:js": "foreach -g \"src/**/*.js\" -x \"terser #{path} --compress --mangle --module --output #{path}\"",
"compress": "concurrently \"npm run compress:css\" \"npm run compress:js\"",
"serve": "http-server ./src --port=4000",
"watch:css": "npm-watch postcss",
"livereload": "livereload -w 2000",
"dev": "concurrently \"npm run watch:css\" \"npm run serve\" \"npm run livereload\""
},
"watch": {
"postcss": {
"extensions": "css",
"ignore": "./src/main.css"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/elisehein/schematics.git"
},
"author": "Elise Hein",
"license": "ISC",
"bugs": {
"url": "https://github.com/elisehein/schematics/issues"
},
"homepage": "https://github.com/elisehein/schematics#readme"
}