forked from stpCollabr8nLstn/pet-petters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.5 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
{
"name": "players-react-skeleton",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "cross-env NODE_ENV=development parcel src/index.html -p 3000",
"start": "npm-run-all -p watch-css start-js",
"build-js": "cross-env NODE_ENV=production parcel build index.html --public-url",
"build": "npm-run-all build-css build-js",
"e2e": "cypress open",
"lint:js": "eslint src/**/**/*.js src/**/**/*.jsx tests/**/**/*.js",
"lint:style": "stylelint src/**/**/*.scss"
},
"dependencies": {
"babel-preset-react-app": "^3.1.2",
"cross-env": "^5.2.0",
"cypress": "^3.0.1",
"parcel-bundler": "^1.9.3",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-router-dom": "^4.3.1",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"node-sass-chokidar": "^1.3.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.6",
"prettierrc": "0.0.0-5",
"react-router": "^4.3.1",
"scss-lint": "0.0.0",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^18.2.0"
}
}