This repository has been archived by the owner on Apr 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.53 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
{
"name": "app-shell",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/TECLIB/app-shell.git"
},
"license": "GPL-3.0",
"devDependencies": {
"babel-eslint": "^8.2.6",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"react-scripts": "1.1.5",
"sass": "^1.13.0",
"sinon": "^6.1.5",
"source-map-explorer": "^1.6.0"
},
"dependencies": {
"node-polyglot": "^2.3.0",
"office-ui-fabric-react": "^6.56.0",
"react": "^16.4.2",
"react-content-loader": "^3.1.2",
"react-dom": "^16.4.2",
"react-markdown": "^3.4.1",
"react-router-dom": "^4.3.1"
},
"scripts": {
"prestart": "yarn sass && yarn test:watch -u &",
"start": "NODE_PATH=./src react-scripts start",
"start:only": "yarn sass:build && NODE_PATH=./src react-scripts start",
"build": "yarn sass:build && yarn lint && NODE_PATH=./src react-scripts build",
"test": "NODE_PATH=./src yarn jest --config ./config/jest/jest.config.json",
"test:watch": "NODE_PATH=./src yarn test --watch",
"eject": "react-scripts eject",
"sass": "sass --watch src/assets/styles/scss:src/assets/styles/css",
"sass:build": "sass src/assets/styles/scss:src/assets/styles/css",
"lint": "yarn eslint src --fix",
"analyze": "source-map-explorer build/static/js/main.*"
}
}