-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·68 lines (68 loc) · 2.07 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
59
60
61
62
63
64
65
66
67
68
{
"name": "ProjectName",
"version": "1.0.0",
"description": "project description",
"main": "index.html",
"scripts": {
"start": "npm run serve",
"serve": "webpack-dev-server --open --colors --watch --inline --progress --content-base /src --config config/webpack.dev.js",
"test:js": "eslint src/js/**",
"test:scss": "stylelint src/scss/**/*.scss",
"test": "npm run test:js && npm run test:scss",
"build": "npm run build:dev",
"build:dev": "ENV=dev webpack --config config/webpack.dev.js",
"build:prod": "npm run clean && ENV=prod webpack --config config/webpack.prod.js",
"clean": "rimraf -- dist",
"clean:all": "rimraf -- node_modules dist"
},
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/martajedrecka/"
},
"keywords": [
"design",
"site",
"front-end"
],
"author": "Marta Jędrecka",
"dependencies": {
"gsap": "^1.20.4",
"imagesloaded": "^4.1.2",
"jquery": "^3.3.1",
"normalize.css": "^5.0.0"
},
"devDependencies": {
"autoprefixer": "^6.7.3",
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.22.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.0.0-beta",
"file-loader": "^0.10.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.0",
"raw-loader": "^0.5.1",
"resolve-url-loader": "^2.0.0",
"rimraf": "^2.5.4",
"sass-loader": "^6.0.1",
"style-loader": "^0.13.1",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"stylelint-scss": "^1.4.4",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"webpack-merge": "^2.6.1"
}
}