-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.67 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
{
"name": "website",
"version": "1.0.0",
"description": "Development repository for www.ams.xyz",
"private": true,
"main": "index.js",
"scripts": {
"test": "yarn run tslint && yarn run prettier",
"fix": "yarn tslint:fix && yarn prettier:fix",
"build": "webpack --config webpack/prod.config.js",
"start": "webpack-dev-server --config webpack/dev.config.js",
"start:local": "yarn start --host 0.0.0.0",
"tslint": "tslint --project tsconfig.json",
"tslint:fix": "tslint --fix --project tsconfig.json",
"prettier": "prettier -l \"**/*.ts\" \"**/*.tsx\" \"**/*.json\"",
"prettier:fix": "prettier --write -l \"**/*.ts\" \"**/*.tsx\" \"**/*.json\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/amsXYZ/website.git"
},
"author": "Andrés Valencia Téllez",
"license": "ISC",
"bugs": {
"url": "https://github.com/amsXYZ/website/issues"
},
"homepage": "https://github.com/amsXYZ/website#readme",
"dependencies": {
"animejs": "^3.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"three": "^0.111.0"
},
"devDependencies": {
"@types/animejs": "^3.1.0",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"copy-webpack-plugin": "^5.0.5",
"html-webpack-plugin": "^3.2.0",
"path": "^0.12.7",
"prettier": "^1.19.1",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.1",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
}
}